summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-12-23 14:35:24 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-12-23 14:35:24 +0000
commitaff41218d6485b1071ee9c099c1eb4fa19e6d11f (patch)
tree052fe95b084e4c7ebd22d728c41476f6cff0463d
parentaac89a3b764fa39bbd379f2d966070ab68059ec3 (diff)
downloadATCD-aff41218d6485b1071ee9c099c1eb4fa19e6d11f.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-96b18
1 files changed, 16 insertions, 2 deletions
diff --git a/ChangeLog-96b b/ChangeLog-96b
index f491bb000b4..4034fc5fd0e 100644
--- a/ChangeLog-96b
+++ b/ChangeLog-96b
@@ -1,4 +1,18 @@
-Sun Dec 22 12:22:59 1996 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+Sun Dec 22 21:23:57 1996 David L. Levine <levine@cs.wustl.edu>
+
+ * ace/Acceptor.cpp: replaced two statements that looked like this:
+ "ptr && ptr->foo ()" with "if (ptr) ptr-> foo()" to prevent
+ compiler warnings about computed values that aren't used
+
+ * netsvcs/clients/Tokens/manual/manual.cpp: added explicit "int"
+ return type to declaration of handle_exception (ACE_HANDLE) so
+ that compilers don't complain about no type
+
+Sun Dec 22 21:16:23 1996 Douglas C. Schmidt <schmidt@mambo.cs.wustl.edu>
+
+ * ace/OS.cpp (thr_create): added a new ACE_HAS_PTHREADS_XAVIER to
+ deal with the sparam.sched_priority features of the Linux
+ pthreads implementation. Thanks to James Johnson for this.
* ace/OS.i (thr_setprio): I forgot to define int policy = 0;
@@ -114,7 +128,7 @@ Sat Dec 21 09:43:35 1996 David L. Levine <levine@cs.wustl.edu>
* ace/OS.{h,i}: fixes for VxWorks introduced in 4.1, and for
inlining: moved #include of OS.i after #defines but before
- other ace #includes OS.h OS.i
+ other ace #includes
Thu Dec 19 15:58:09 1996 David L. Levine <levine@cs.wustl.edu>