commit | e5f816c01780220880ee59a29f727c48b51365d3 | [log] [tgz] |
---|---|---|
author | Yabin Cui <yabinc@google.com> | Thu Jan 29 12:13:33 2015 -0800 |
committer | Yabin Cui <yabinc@google.com> | Mon Feb 09 15:54:22 2015 -0800 |
tree | 37454e7d27774bde02d5d28aee3d1aad3cbb6d73 | |
parent | 7f17aea2fc21aaf657824a023a4b7582fb74a2d9 [diff] [blame] |
Switch pthread_cond_t to <stdatomic.h>. Bug: 17574458 Change-Id: Ic7f79861df4fe751cfa6c6b20b71123cc31e7114
diff --git a/libc/include/pthread.h b/libc/include/pthread.h index 4281132..2cbcd87 100644 --- a/libc/include/pthread.h +++ b/libc/include/pthread.h
@@ -73,7 +73,7 @@ }; typedef struct { - int volatile value; + unsigned int value; #ifdef __LP64__ char __reserved[44]; #endif