summaryrefslogtreecommitdiff
path: root/condvar.c
diff options
context:
space:
mode:
authorrpj <rpj>2002-02-03 22:50:19 +0000
committerrpj <rpj>2002-02-03 22:50:19 +0000
commitd432fab8dc7bcaa47e59c41ce3e94f88380b80a2 (patch)
tree765197a3f6a65f6f80113652d25e508690f5ca83 /condvar.c
parent4a72430d821b96add23846980d07f5a01059029d (diff)
Change #pragma inline_depth(8) to use empty () for default value.
Diffstat (limited to 'condvar.c')
-rw-r--r--condvar.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/condvar.c b/condvar.c
index 4d22608..1965abd 100644
--- a/condvar.c
+++ b/condvar.c
@@ -753,9 +753,9 @@ ptw32_cond_wait_cleanup(void * args)
int result;
/*
- * Whether we got here as a result of signal/broadcast or because of
- * timeout on wait or thread cancellation we indicate that we are no
- * longer waiting. The waiter is responsible for adjusting waiters
+ * Whether we got here as a result of signal/broadcast or because of
+ * timeout on wait or thread cancellation we indicate that we are no
+ * longer waiting. The waiter is responsible for adjusting waiters
* (to)unblock(ed) counts (protected by unblock lock).
*/
if ((result = pthread_mutex_lock(&(cv->mtxUnblockLock))) != 0)
@@ -853,7 +853,7 @@ ptw32_cond_wait_cleanup(void * args)
}
/*
- * XSH: Upon successful return, the mutex has been locked and is owned
+ * XSH: Upon successful return, the mutex has been locked and is owned
* by the calling thread
*/
if ((result = pthread_mutex_lock(cleanup_args->mutexPtr)) != 0)
@@ -963,7 +963,7 @@ ptw32_cond_timedwait (pthread_cond_t * cond,
*/
pthread_cleanup_pop(1);
#ifdef _MSC_VER
-#pragma inline_depth(8)
+#pragma inline_depth()
#endif
/*