summaryrefslogtreecommitdiff
path: root/libthreads/cprocs.c
diff options
context:
space:
mode:
Diffstat (limited to 'libthreads/cprocs.c')
-rw-r--r--libthreads/cprocs.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libthreads/cprocs.c b/libthreads/cprocs.c
index 929461c1..4656e8d8 100644
--- a/libthreads/cprocs.c
+++ b/libthreads/cprocs.c
@@ -908,6 +908,11 @@ mutex_unlock_solid(m)
}
}
+/* The GNU C library's internal locking functions use these variables. */
+void (*_cthread_mutex_lock_routine) (struct mutex *) = mutex_lock_solid;
+void (*_cthread_mutex_unlock_routine) (struct mutex *) = mutex_unlock_solid;
+
+
/*
* Use instead of mach_msg in a multi-threaded server so as not
* to tie up excessive kernel threads. This uses a simple linked list for