diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/aio.h | 2 | ||||
-rw-r--r-- | include/semaphore.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/aio.h b/include/aio.h index d9330ebe..19bc28a9 100644 --- a/include/aio.h +++ b/include/aio.h @@ -21,7 +21,7 @@ struct aiocb { struct sigevent aio_sigevent; void *__td; int __lock[2]; - int __err; + volatile int __err; ssize_t __ret; off_t aio_offset; void *__next, *__prev; diff --git a/include/semaphore.h b/include/semaphore.h index 20d46f0d..277c47d6 100644 --- a/include/semaphore.h +++ b/include/semaphore.h @@ -15,7 +15,7 @@ extern "C" { #define SEM_FAILED ((sem_t *)0) typedef struct { - int __val[4*sizeof(long)/sizeof(int)]; + volatile int __val[4*sizeof(long)/sizeof(int)]; } sem_t; int sem_close(sem_t *); |