summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorrpj <rpj>2001-02-08 16:31:20 +0000
committerrpj <rpj>2001-02-08 16:31:20 +0000
commit2b3eede0b834a82c7dce5ec328f3929c0effc536 (patch)
tree24414750f16e0c7bc7d231139d7f20a76b512ae4 /misc.c
parent3c0fbfafe563b7b312d60c42c0d58a3a1f4d5930 (diff)
Fixes to new mutex routines and various tests.exp-2001-02-09-passed
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/misc.c b/misc.c
index 6116e50..20c90f6 100644
--- a/misc.c
+++ b/misc.c
@@ -238,6 +238,27 @@ pthread_equal (pthread_t t1, pthread_t t2)
} /* pthread_equal */
+int
+pthread_setconcurrency(int level)
+{
+ if (level < 0)
+ {
+ return EINVAL;
+ }
+ else
+ {
+ return 0;
+ }
+}
+
+
+int
+pthread_getconcurrency(void)
+{
+ return 0;
+}
+
+
static int
ptw32_cancelable_wait (HANDLE waitHandle, DWORD timeout)
/*