summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-05-23 22:36:19 +0000
committerkitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-05-23 22:36:19 +0000
commit5a4577923ecb4a045f36527d3455963f6a7dcd19 (patch)
treebc71a980549e1c66fbefb8ecd47dc00dd14d893d
parent3ef65e9b6ead3d15ad138024873a0d9a92df9c7d (diff)
downloadATCD-5a4577923ecb4a045f36527d3455963f6a7dcd19.tar.gz
ChangeLogTag: Wed May 23 17:33:59 2001 Krishnakumar B <kitty@cs.wustl.edu>
-rw-r--r--ChangeLog11
-rw-r--r--ChangeLogs/ChangeLog-02a11
-rw-r--r--ChangeLogs/ChangeLog-03a11
-rwxr-xr-xbin/make_pretty.pl8
4 files changed, 37 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index aeb29982f2e..466be7304f4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Wed May 23 17:33:59 2001 Krishnakumar B <kitty@cs.wustl.edu>
+
+ * bin/make_pretty.pl:
+
+ Seems to have missed my previous update. Add the code to remove
+ the bogus warning associated with SunCC5. Check the ChangeLog tag
+ Mon May 21 16:37:18 2001 Krishnakumar B <kitty@cs.wustl.edu> for
+ more.
+
Wed May 23 18:22:41 2001 Steve Huston <shuston@riverace.com>
* ace/Reactor.cpp (run_reactor_event_loop (ACE_Time_Value&, eh)):
@@ -32,7 +41,7 @@ Wed May 23 14:41:00 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* netsvcs/Makefile.am:
* netsvcs/Makefile.bor:
* netsvcs/README:
- * netsvcs/build.bor: Resurrected the files from the repo.
+ * netsvcs/build.bor: Resurrected the files from the repo.
Wed May 23 11:13:00 2001 Carlos O'Ryan <coryan@uci.edu>
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index aeb29982f2e..466be7304f4 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,12 @@
+Wed May 23 17:33:59 2001 Krishnakumar B <kitty@cs.wustl.edu>
+
+ * bin/make_pretty.pl:
+
+ Seems to have missed my previous update. Add the code to remove
+ the bogus warning associated with SunCC5. Check the ChangeLog tag
+ Mon May 21 16:37:18 2001 Krishnakumar B <kitty@cs.wustl.edu> for
+ more.
+
Wed May 23 18:22:41 2001 Steve Huston <shuston@riverace.com>
* ace/Reactor.cpp (run_reactor_event_loop (ACE_Time_Value&, eh)):
@@ -32,7 +41,7 @@ Wed May 23 14:41:00 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* netsvcs/Makefile.am:
* netsvcs/Makefile.bor:
* netsvcs/README:
- * netsvcs/build.bor: Resurrected the files from the repo.
+ * netsvcs/build.bor: Resurrected the files from the repo.
Wed May 23 11:13:00 2001 Carlos O'Ryan <coryan@uci.edu>
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index aeb29982f2e..466be7304f4 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,12 @@
+Wed May 23 17:33:59 2001 Krishnakumar B <kitty@cs.wustl.edu>
+
+ * bin/make_pretty.pl:
+
+ Seems to have missed my previous update. Add the code to remove
+ the bogus warning associated with SunCC5. Check the ChangeLog tag
+ Mon May 21 16:37:18 2001 Krishnakumar B <kitty@cs.wustl.edu> for
+ more.
+
Wed May 23 18:22:41 2001 Steve Huston <shuston@riverace.com>
* ace/Reactor.cpp (run_reactor_event_loop (ACE_Time_Value&, eh)):
@@ -32,7 +41,7 @@ Wed May 23 14:41:00 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* netsvcs/Makefile.am:
* netsvcs/Makefile.bor:
* netsvcs/README:
- * netsvcs/build.bor: Resurrected the files from the repo.
+ * netsvcs/build.bor: Resurrected the files from the repo.
Wed May 23 11:13:00 2001 Carlos O'Ryan <coryan@uci.edu>
diff --git a/bin/make_pretty.pl b/bin/make_pretty.pl
index c0ee5ca2e1e..a1e12de934f 100755
--- a/bin/make_pretty.pl
+++ b/bin/make_pretty.pl
@@ -122,6 +122,12 @@ sub is_warning ()
# HP-UX uses 'nocompatwarnings' as an option to the compiler.
return 3 if (m/vnocompatwarnings/);
+ # SUN CC 5.0 defines __pthread_cleanup_push as a macro which causes
+ # warnings. See /usr/include/pthread.h and
+ # $ACE_ROOT/examples/Timer_Queue/Thread_Timer_Queue_Test.cpp for more
+ # information.
+ return 0 if (m/in call to __pthread_cleanup_push\(extern/);
+
# Look for lines that also should be color coded, but not counted
# as warnings.
return 2 if (/see declaration of/);
@@ -161,7 +167,7 @@ sub is_error ()
# have the word 'error' in the symbol name - ignore those.
return 0 if (m/^ld: \d+\-\d+ WARNING: Duplicate symbol:/);
- # Linux has this annoying mktemp, mkstemp stuff. Ignore that
+ # Linux has this annoying mktemp, mkstemp stuff. Ignore that
# for the timebeing
return 0 if (/is dangerous, better use/);