summaryrefslogtreecommitdiffstats
path: root/libc/stdio/fileext.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-02-24 18:00:43 -0800
committerElliott Hughes <enh@google.com>2014-02-24 18:02:05 -0800
commit53e43292aac91bf62995788cd5ca2ceb7caea283 (patch)
tree003679a1e2288bad947f714ee45bfa6febf479b6 /libc/stdio/fileext.h
parentba40a560176e6ea753d09a6a71343b81ea4c8c1e (diff)
downloadbionic-53e43292aac91bf62995788cd5ca2ceb7caea283.zip
bionic-53e43292aac91bf62995788cd5ca2ceb7caea283.tar.gz
bionic-53e43292aac91bf62995788cd5ca2ceb7caea283.tar.bz2
More OpenBSD cleanup (primarily string).
This patch removes the string/ and wchar/ directories. Change-Id: Ia489904bc67047e4bc79acb1f3eec21aa3fe5f0d
Diffstat (limited to 'libc/stdio/fileext.h')
-rw-r--r--libc/stdio/fileext.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/libc/stdio/fileext.h b/libc/stdio/fileext.h
index b36a448..8641924 100644
--- a/libc/stdio/fileext.h
+++ b/libc/stdio/fileext.h
@@ -52,18 +52,9 @@ do { \
_UB(fp)._base = NULL; \
_UB(fp)._size = 0; \
WCIO_INIT(fp); \
- _FLOCK_INIT(fp); \
+ _FLOCK(fp).value = __PTHREAD_RECURSIVE_MUTEX_INIT_VALUE; \
} while (0)
-/* Helper macros to avoid a function call when you know that fp is not NULL.
- * Notice that we keep _FLOCK_INIT() fast by slightly breaking our pthread
- * encapsulation.
- */
-#define _FLOCK_INIT(fp) _FLOCK(fp).value = __PTHREAD_RECURSIVE_MUTEX_INIT_VALUE
-#define _FLOCK_LOCK(fp) pthread_mutex_lock(&_FLOCK(fp))
-#define _FLOCK_TRYLOCK(fp) pthread_mutex_trylock(&_FLOCK(fp))
-#define _FLOCK_UNLOCK(fp) pthread_mutex_unlock(&_FLOCK(fp))
-
#define _FILEEXT_SETUP(f, fext) \
do { \
(f)->_ext._base = (unsigned char *)(fext); \