blob: f90bf64c10520a4e22e7e16b95d8e7eb86a4ef16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
$NetBSD: patch-ah,v 1.1.1.1 2010/03/04 16:28:58 taca Exp $
--- include/my_no_pthread.h.orig 2010-02-04 11:37:06.000000000 +0000
+++ include/my_no_pthread.h
@@ -37,9 +37,21 @@
to make thread safe code, that should also work in single thread
environment, easier to use.
*/
+#ifdef pthread_mutex_init
+#undef pthread_mutex_init
+#endif
#define pthread_mutex_init(A,B)
+#ifdef pthread_mutex_lock
+#undef pthread_mutex_lock
+#endif
#define pthread_mutex_lock(A)
+#ifdef pthread_mutex_unlock
+#undef pthread_mutex_unlock
+#endif
#define pthread_mutex_unlock(A)
+#ifdef pthread_mutex_destroy
+#undef pthread_mutex_destroy
+#endif
#define pthread_mutex_destroy(A)
#define my_rwlock_init(A,B)
#define rw_rdlock(A)
|