summaryrefslogtreecommitdiff
path: root/src/lib/libc/include/thread_private.h
diff options
context:
space:
mode:
authormarc <>2002-11-03 23:58:39 +0000
committermarc <>2002-11-03 23:58:39 +0000
commitc8b772af00b03eb1dd9425663fd4b7f60c9693bb (patch)
tree2206a8dcf3012ad649fe0287a808260b5bd519ea /src/lib/libc/include/thread_private.h
parentc64ae263713a52181fce5e72d090dfc2a7b7b008 (diff)
downloadopenbsd-c8b772af00b03eb1dd9425663fd4b7f60c9693bb.tar.gz
openbsd-c8b772af00b03eb1dd9425663fd4b7f60c9693bb.tar.bz2
openbsd-c8b772af00b03eb1dd9425663fd4b7f60c9693bb.zip
back out previous patch.. there are still some vax/m68k issues
Diffstat (limited to 'src/lib/libc/include/thread_private.h')
-rw-r--r--src/lib/libc/include/thread_private.h70
1 files changed, 40 insertions, 30 deletions
diff --git a/src/lib/libc/include/thread_private.h b/src/lib/libc/include/thread_private.h
index 976e330cac..89faade556 100644
--- a/src/lib/libc/include/thread_private.h
+++ b/src/lib/libc/include/thread_private.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: thread_private.h,v 1.12 2002/11/03 20:36:43 marc Exp $ */ 1/* $OpenBSD: thread_private.h,v 1.13 2002/11/03 23:58:39 marc Exp $ */
2 2
3#ifndef _THREAD_PRIVATE_H_ 3#ifndef _THREAD_PRIVATE_H_
4#define _THREAD_PRIVATE_H_ 4#define _THREAD_PRIVATE_H_
@@ -18,7 +18,19 @@ extern int __isthreaded;
18 * Use WEAK_NAME(n) to get a libc-private name for n (_weak_n), 18 * Use WEAK_NAME(n) to get a libc-private name for n (_weak_n),
19 * WEAK_ALIAS(n) to generate the weak symbol n pointing to _weak_n, 19 * WEAK_ALIAS(n) to generate the weak symbol n pointing to _weak_n,
20 * WEAK_PROTOTYPE(n) to generate a prototype for _weak_n (based on n). 20 * WEAK_PROTOTYPE(n) to generate a prototype for _weak_n (based on n).
21 *
22 * If the symbol _NO_WEAK_ALIASES is defined, then symbols will be
21 */ 23 */
24
25#ifdef _NO_WEAK_ALIASES
26#ifdef _THREAD_SAFE
27#define WEAK_NAME(name) __CONCAT(_weak,name)
28#else
29#define WEAK_NAME(name) name
30#endif
31#define WEAK_ALIAS(name) /* unavailable */
32#define WEAK_PROTOTYPE(name) /* unnecessary */
33#else /* !_NO_WEAK_ALIASES */
22#define WEAK_NAME(name) __CONCAT(_weak_,name) 34#define WEAK_NAME(name) __CONCAT(_weak_,name)
23#define WEAK_ALIAS(name) __weak_alias(name, WEAK_NAME(name)) 35#define WEAK_ALIAS(name) __weak_alias(name, WEAK_NAME(name))
24#ifdef __GNUC__ 36#ifdef __GNUC__
@@ -26,6 +38,7 @@ extern int __isthreaded;
26#else 38#else
27#define WEAK_PROTOTYPE(name) /* typeof() only in gcc */ 39#define WEAK_PROTOTYPE(name) /* typeof() only in gcc */
28#endif 40#endif
41#endif /* !_NO_WEAK_ALIASES */
29 42
30/* 43/*
31 * These macros help in making persistent storage thread-specific. 44 * These macros help in making persistent storage thread-specific.
@@ -49,7 +62,7 @@ struct _thread_private_key_struct {
49void _libc_private_storage_lock(pthread_mutex_t *); 62void _libc_private_storage_lock(pthread_mutex_t *);
50void _libc_private_storage_unlock(pthread_mutex_t *); 63void _libc_private_storage_unlock(pthread_mutex_t *);
51void * _libc_private_storage(volatile struct _thread_private_key_struct *, 64void * _libc_private_storage(volatile struct _thread_private_key_struct *,
52 void *, size_t, void *); 65 void *, size_t, void *);
53 66
54/* Declare a module mutex. */ 67/* Declare a module mutex. */
55#define _THREAD_PRIVATE_MUTEX(name) \ 68#define _THREAD_PRIVATE_MUTEX(name) \
@@ -84,7 +97,18 @@ void * _libc_private_storage(volatile struct _thread_private_key_struct *,
84 */ 97 */
85#define _THREAD_PRIVATE(keyname, storage, error) \ 98#define _THREAD_PRIVATE(keyname, storage, error) \
86 _libc_private_storage(&__THREAD_KEY_NAME(keyname), \ 99 _libc_private_storage(&__THREAD_KEY_NAME(keyname), \
87 &(storage), sizeof (storage), error) 100 &(storage), sizeof (storage), error)
101
102/*
103 * Macros for locking and unlocking FILEs. These test if the
104 * process is threaded to avoid locking when not required.
105 */
106#ifdef _FLOCK_DEBUG
107#define FLOCKFILE(fp) _flockfile_debug(fp, __FILE__, __LINE__)
108#else
109#define FLOCKFILE(fp) flockfile(fp)
110#endif
111#define FUNLOCKFILE(fp) funlockfile(fp)
88 112
89/* 113/*
90 * File descriptor locking definitions. 114 * File descriptor locking definitions.
@@ -93,33 +117,19 @@ void * _libc_private_storage(volatile struct _thread_private_key_struct *,
93#define FD_WRITE 0x2 117#define FD_WRITE 0x2
94#define FD_RDWR (FD_READ | FD_WRITE) 118#define FD_RDWR (FD_READ | FD_WRITE)
95 119
96#define _FD_LOCK(_fd,_type,_ts) \ 120#ifdef _LOCK_DEBUG
97 _thread_fd_lock(_fd, _type, _ts, __FILE__, __LINE__) 121#define _FD_LOCK(_fd,_type,_ts) _thread_fd_lock_debug(_fd, _type, \
98#define _FD_UNLOCK(_fd,_type) \ 122 _ts, __FILE__, __LINE__)
99 _thread_fd_unlock(_fd, _type, __FILE__, __LINE__) 123#define _FD_UNLOCK(_fd,_type) _thread_fd_unlock_debug(_fd, _type, \
100 124 __FILE__, __LINE__)
101int _thread_fd_lock(int, int, struct timespec *, const char *, int); 125#else
102void _thread_fd_unlock(int, int, const char *, int); 126#define _FD_LOCK(_fd,_type,_ts) _thread_fd_lock(_fd, _type, _ts)
127#define _FD_UNLOCK(_fd,_type) _thread_fd_unlock(_fd, _type)
128#endif
103 129
104/* 130int _thread_fd_lock(int, int, struct timespec *);
105 * malloc lock/unlock definitions 131int _thread_fd_lock_debug(int, int, struct timespec *, char *, int);
106 */ 132void _thread_fd_unlock(int, int);
107# define _MALLOC_LOCK() do { \ 133void _thread_fd_unlock_debug(int, int, char *, int);
108 if (__isthreaded) \
109 _thread_malloc_lock(); \
110 } while (0)
111# define _MALLOC_UNLOCK() do { \
112 if (__isthreaded) \
113 _thread_malloc_unlock();\
114 } while (0)
115# define _MALLOC_LOCK_INIT()do { \
116 if (__isthreaded) \
117 _thread_malloc_init();\
118 } while (0)
119
120
121void _thread_malloc_init(void);
122void _thread_malloc_lock(void);
123void _thread_malloc_unlock(void);
124 134
125#endif /* _THREAD_PRIVATE_H_ */ 135#endif /* _THREAD_PRIVATE_H_ */