diff options
author | Elliott Hughes <enh@google.com> | 2014-05-21 18:27:40 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-05-21 18:30:00 -0700 |
commit | d5ed63a6a8290de88802172ce178656fbafe70c6 (patch) | |
tree | 97bb7a00c975041f6e297fe7ff53a8b116f405bf /libc/include | |
parent | f97d8713a265f44279819ba6b245dd81aada34da (diff) | |
download | bionic-d5ed63a6a8290de88802172ce178656fbafe70c6.zip bionic-d5ed63a6a8290de88802172ce178656fbafe70c6.tar.gz bionic-d5ed63a6a8290de88802172ce178656fbafe70c6.tar.bz2 |
Hide most of the private futex functions.
Also hide part of the system properties compatibility code, since
we needed to touch that to keep it building.
I'll remove __futex_syscall4 and futex in a later patch.
Bug: 11156955
Change-Id: Ibbf42414c5bb07fb9f1c4a169922844778e4eeae
Diffstat (limited to 'libc/include')
-rw-r--r-- | libc/include/sys/atomics.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libc/include/sys/atomics.h b/libc/include/sys/atomics.h index 143bc4b..dfb5d5e 100644 --- a/libc/include/sys/atomics.h +++ b/libc/include/sys/atomics.h @@ -75,10 +75,6 @@ __atomic_inc(volatile int *ptr) return __sync_fetch_and_add (ptr, 1); } - -int __futex_wait(volatile void *ftx, int val, const struct timespec *timeout); -int __futex_wake(volatile void *ftx, int count); - __END_DECLS #endif /* _SYS_ATOMICS_H */ |