diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-05-15 11:54:37 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-05-15 11:54:37 +0000 |
commit | 4f30bea198654c2a490b6b6da529563d001a3743 (patch) | |
tree | a5f7698ed9c2d1b1f3988ef54911cb2e913192b0 | |
parent | 4288aa6c1516a960f199b68eb9d21e7416ffab80 (diff) | |
download | ATCD-4f30bea198654c2a490b6b6da529563d001a3743.tar.gz |
*** empty log message ***
-rw-r--r-- | ChangeLog-97a | 4 | ||||
-rw-r--r-- | ace/Reactor.h | 2 | ||||
-rw-r--r-- | examples/Threads/thread_specific.cpp | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog-97a b/ChangeLog-97a index d7e8a5438ea..41d914b71e4 100644 --- a/ChangeLog-97a +++ b/ChangeLog-97a @@ -1,5 +1,9 @@ Thu May 15 00:26:42 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu> + * examples/Threads/thread_specific.cpp (worker): Changes + size_t i back to int i to avoid a signed/unsigned complaint. + Thanks to David Levine for reporting this. + * ace/config-chorus.h: Added ACE_LACKS_MPROTECT, ACE_HAS_IP_MULTICAST, and ACE_LACKS_SOCKETPAIR to the Chorus port. Thanks to Wei Chiang <chiang@erebor.tele.nokia.fi> for diff --git a/ace/Reactor.h b/ace/Reactor.h index 377d973dbc0..a40ba3f3eaf 100644 --- a/ace/Reactor.h +++ b/ace/Reactor.h @@ -750,7 +750,7 @@ protected: ACE_Reactor_Token token_; // Synchronization token for the MT_SAFE ACE_Reactor. -x#if defined (ACE_MT_SAFE) +#if defined (ACE_MT_SAFE) ACE_Reactor_Notify notify_handler_; // Callback object that unblocks the ACE_Reactor if it's sleeping. diff --git a/examples/Threads/thread_specific.cpp b/examples/Threads/thread_specific.cpp index 0ca8c5d1cd6..872849d0c2f 100644 --- a/examples/Threads/thread_specific.cpp +++ b/examples/Threads/thread_specific.cpp @@ -96,7 +96,7 @@ worker (void *c) if (ACE_OS::thr_setspecific (key, (void *) ip) == -1) ACE_ERROR ((LM_ERROR, "(%t) %p\n", "ACE_OS::thr_setspecific")); - for (size_t i = 0; i < count; i++) + for (int i = 0; i < count; i++) { if (ACE_OS::thr_keycreate (&key, cleanup) == -1) ACE_ERROR ((LM_ERROR, "(%t) %p\n", "ACE_OS::thr_keycreate")); |