commit | 86fc96f73311f43980df770f4ff8022f1e9b296a | [log] [tgz] |
---|---|---|
author | Yabin Cui <yabinc@google.com> | Thu Jan 29 21:50:48 2015 -0800 |
committer | Yabin Cui <yabinc@google.com> | Mon Feb 02 15:00:01 2015 -0800 |
tree | 0eb94839231c5c19cd7b4bf0954083ba670d62bd | |
parent | 6a3ff01cd4f063556cf25706ddc9dff82c351aba [diff] [blame] |
Switch pthread_mutex_t from bionic atomics to <stdatomic.h>. Bug: 17574456 Change-Id: I5ce3d3dc07e804e9ce55c42920f47531b56e04de
diff --git a/libc/include/pthread.h b/libc/include/pthread.h index 4281132..8d053ae 100644 --- a/libc/include/pthread.h +++ b/libc/include/pthread.h
@@ -43,7 +43,7 @@ #endif typedef struct { - int volatile value; + int value; #ifdef __LP64__ char __reserved[36]; #endif