diff options
author | Elliott Hughes <enh@google.com> | 2018-08-22 10:36:23 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2018-08-22 10:36:23 -0700 |
commit | 99d54656bda40edb817e6bc6de9a85d88ef4e6b5 (patch) | |
tree | 1a176f12c89582f0d06a3376ef66c6281d8af01c /libc/stdlib | |
parent | 8f2298e73f4d930b58a8466fd7264e9a88c96d99 (diff) |
Add PR_SET_VMA and PR_SET_VMA_ANON_NAME to <sys/prctl.h>.
We've copied & pasted these to too many places. And if we're going to
have another go at upstreaming these, that's probably yet another reason
to have the *values* in just one place. (Even if upstream wants different
names, we'll likely keep the legacy names around for a while for source
compatibility.)
Bug: http://b/111903542
Test: ran tests
Change-Id: I8ccc557453d69530e5b74f865cbe0b458c84e3ba
Diffstat (limited to 'libc/stdlib')
-rw-r--r-- | libc/stdlib/atexit.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libc/stdlib/atexit.c b/libc/stdlib/atexit.c index a26bee4ff..bd6ac3db0 100644 --- a/libc/stdlib/atexit.c +++ b/libc/stdlib/atexit.c @@ -36,12 +36,9 @@ #include <string.h> #include <unistd.h> #include <sys/mman.h> +#include <sys/prctl.h> #include <sys/types.h> -/* BEGIN android-changed */ -#include "private/bionic_prctl.h" -/* END android-changed */ - static pthread_mutex_t g_atexit_lock = PTHREAD_MUTEX_INITIALIZER; #define _ATEXIT_LOCK() pthread_mutex_lock(&g_atexit_lock) #define _ATEXIT_UNLOCK() pthread_mutex_unlock(&g_atexit_lock) |