Merge "Reserve some space in sem_t for the future."

This commit is contained in:
Calin Juravle
2014-05-07 14:04:31 +00:00
committed by Gerrit Code Review

View File

@@ -34,6 +34,9 @@ __BEGIN_DECLS
typedef struct {
volatile unsigned int count;
#ifdef __LP64__
int __reserved[3];
#endif
} sem_t;
#define SEM_FAILED NULL