commit | a3d97da4c5c96f2c224485928154bad111cd635f | [log] [tgz] |
---|---|---|
author | Yabin Cui <yabinc@google.com> | Fri Jan 30 12:30:08 2015 -0800 |
committer | Yabin Cui <yabinc@google.com> | Tue Feb 03 16:35:57 2015 -0800 |
tree | 4aeb0ed6daa210dc79e9a48e210de9aeafa9601f | |
parent | 7f17aea2fc21aaf657824a023a4b7582fb74a2d9 [diff] [blame] |
Switch sem_t from bionic atomics to stdatomic.h. Bug: 17572887 Change-Id: If66851ba9b831cdd698b9f1303289bb14448bd03
diff --git a/libc/include/semaphore.h b/libc/include/semaphore.h index 5827870..4ef13af 100644 --- a/libc/include/semaphore.h +++ b/libc/include/semaphore.h
@@ -36,7 +36,7 @@ struct timespec; typedef struct { - volatile unsigned int count; + unsigned int count; #ifdef __LP64__ int __reserved[3]; #endif