diff options
author | dim <dim@FreeBSD.org> | 2015-02-14 13:12:03 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2015-02-14 13:12:03 +0000 |
commit | ff34755926ad8a77e4498e82a23c847d33c6c72d (patch) | |
tree | 32512087a8fc0e78759068f074dd1fcac39ef5c9 /lib/libc/include/libc_private.h | |
parent | 3b7b68ffe74f0538bae62b7a4ba4e448156b9542 (diff) | |
parent | 1cd0dffdca6542739e3aa4c7e5221f0b28d076c4 (diff) | |
download | FreeBSD-src-ff34755926ad8a77e4498e82a23c847d33c6c72d.zip FreeBSD-src-ff34755926ad8a77e4498e82a23c847d33c6c72d.tar.gz |
Merge ^/head r278499 through r278755.
Diffstat (limited to 'lib/libc/include/libc_private.h')
-rw-r--r-- | lib/libc/include/libc_private.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libc/include/libc_private.h b/lib/libc/include/libc_private.h index bfcd3d0..71fc8df 100644 --- a/lib/libc/include/libc_private.h +++ b/lib/libc/include/libc_private.h @@ -95,6 +95,9 @@ do { \ _SPINUNLOCK(&__stdio_thread_lock); \ } while (0) +void __libc_spinlock_stub(struct _spinlock *); +void __libc_spinunlock_stub(struct _spinlock *); + /* * Indexes into the pthread jump table. * @@ -216,6 +219,8 @@ enum { INTERPOS_write, INTERPOS_writev, INTERPOS__pthread_mutex_init_calloc_cb, + INTERPOS_spinlock, + INTERPOS_spinunlock, INTERPOS_MAX }; |