summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-05-03 13:04:04 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-05-03 13:04:04 +0000
commitda29af5c734e471ed7bd66ec7810cbb3b90bd150 (patch)
tree6ee49b7456640414a79a6240c2b0ce0be157c9d1
parentd4c8d69b06d62a10b7556030d5e07f240e05f3ff (diff)
downloadATCD-da29af5c734e471ed7bd66ec7810cbb3b90bd150.tar.gz
ChangeLogTag: Thu May 3 08:00:56 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--ChangeLog7
-rw-r--r--ChangeLogs/ChangeLog-02a7
-rw-r--r--ChangeLogs/ChangeLog-03a7
-rw-r--r--examples/ASX/Event_Server/Event_Server/Options.cpp4
-rw-r--r--examples/ASX/UPIPE_Event_Server/Options.cpp4
5 files changed, 25 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 38af085bd58..63f26ab2f18 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Thu May 3 08:00:56 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * examples/ASX/Event_Server/Event_Server/Options.cpp:
+ * examples/ASX/UPIPE_Event_Server/Options.cpp: Warning fixes that
+ missed my earlier fix. This warning will appear only in the
+ evening SUNOS EGCS build result. Just a proactive fix. :)
+
Thu May 3 07:42:01 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* examples/IPC_SAP/FILE_SAP/client.cpp: Fixed a warning with Linux
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 38af085bd58..63f26ab2f18 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Thu May 3 08:00:56 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * examples/ASX/Event_Server/Event_Server/Options.cpp:
+ * examples/ASX/UPIPE_Event_Server/Options.cpp: Warning fixes that
+ missed my earlier fix. This warning will appear only in the
+ evening SUNOS EGCS build result. Just a proactive fix. :)
+
Thu May 3 07:42:01 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* examples/IPC_SAP/FILE_SAP/client.cpp: Fixed a warning with Linux
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 38af085bd58..63f26ab2f18 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,10 @@
+Thu May 3 08:00:56 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * examples/ASX/Event_Server/Event_Server/Options.cpp:
+ * examples/ASX/UPIPE_Event_Server/Options.cpp: Warning fixes that
+ missed my earlier fix. This warning will appear only in the
+ evening SUNOS EGCS build result. Just a proactive fix. :)
+
Thu May 3 07:42:01 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* examples/IPC_SAP/FILE_SAP/client.cpp: Fixed a warning with Linux
diff --git a/examples/ASX/Event_Server/Event_Server/Options.cpp b/examples/ASX/Event_Server/Event_Server/Options.cpp
index 9aac63064a6..63b2c1d0e0d 100644
--- a/examples/ASX/Event_Server/Event_Server/Options.cpp
+++ b/examples/ASX/Event_Server/Event_Server/Options.cpp
@@ -70,9 +70,9 @@ void Options::print_results (void)
"%8d = involuntary context switches\n"
"%8d = system calls\n"
"%8d = chars read/written\n",
- rusage.pr_lwpid,
+ (int) rusage.pr_lwpid,
(int) rusage.pr_count,
- rusage.pr_minf,
+ (int) rusage.pr_minf,
(int) rusage.pr_majf,
(int) rusage.pr_inblk,
(int) rusage.pr_oublk,
diff --git a/examples/ASX/UPIPE_Event_Server/Options.cpp b/examples/ASX/UPIPE_Event_Server/Options.cpp
index 99a8b67d34a..59fff50a0f9 100644
--- a/examples/ASX/UPIPE_Event_Server/Options.cpp
+++ b/examples/ASX/UPIPE_Event_Server/Options.cpp
@@ -59,9 +59,9 @@ void Options::print_results (void)
"%8d = involuntary context switches\n"
"%8d = system calls\n"
"%8d = chars read/written\n",
- rusage.pr_lwpid,
+ (int) rusage.pr_lwpid,
(int) rusage.pr_count,
- rusage.pr_minf,
+ (int) rusage.pr_minf,
(int) rusage.pr_majf,
(int) rusage.pr_inblk,
(int) rusage.pr_oublk,