summaryrefslogtreecommitdiffstats
path: root/libc/bionic/system_properties.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-05-21 18:27:40 -0700
committerElliott Hughes <enh@google.com>2014-05-21 18:30:00 -0700
commitd5ed63a6a8290de88802172ce178656fbafe70c6 (patch)
tree97bb7a00c975041f6e297fe7ff53a8b116f405bf /libc/bionic/system_properties.cpp
parentf97d8713a265f44279819ba6b245dd81aada34da (diff)
downloadbionic-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/bionic/system_properties.cpp')
-rw-r--r--libc/bionic/system_properties.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/bionic/system_properties.cpp b/libc/bionic/system_properties.cpp
index 97e1a03..7618586 100644
--- a/libc/bionic/system_properties.cpp
+++ b/libc/bionic/system_properties.cpp
@@ -51,9 +51,8 @@
#include <sys/_system_properties.h>
#include <sys/system_properties.h>
-#include <sys/atomics.h>
-
#include "private/bionic_atomic_inline.h"
+#include "private/bionic_futex.h"
#include "private/bionic_macros.h"
#define ALIGN(x, a) (((x) + (a - 1)) & ~(a - 1))