Skip to content

Commit

Permalink
Fix 'rc=' in __APPLE__ block for CtrlCHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmoore committed Feb 23, 2012
1 parent 9ff440a commit 3fbafee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/IceUtil/CtrlCHandler.cpp
Expand Up @@ -246,7 +246,7 @@ CtrlCHandler::~CtrlCHandler()
// WORKAROUND: sigwait isn't a cancellation point on MacOS X, see
// comment in sigwaitThread
//
rc = pthread_kill(_tid, SIGTERM);
pthread_kill(_tid, SIGTERM);
//assert(rc == 0); For some reaosns, this assert is sometime triggered
#endif
void* status = 0;
Expand Down

0 comments on commit 3fbafee

Please sign in to comment.