Switch pthread_mutex_t from bionic atomics to <stdatomic.h>.

Bug: 17574456
Change-Id: I5ce3d3dc07e804e9ce55c42920f47531b56e04de
This commit is contained in:
Yabin Cui
2015-01-29 21:50:48 -08:00
parent 6a3ff01cd4
commit 86fc96f733
2 changed files with 301 additions and 323 deletions

View File

@@ -43,7 +43,7 @@
#endif
typedef struct {
int volatile value;
int value;
#ifdef __LP64__
char __reserved[36];
#endif