Fix build: align pthread_cond_t to sizeof(long)

Change-Id: Ieaee6d09089b161ec516ba22cafaee1ecb4342da
This commit is contained in:
Dmitriy Ivanov 2015-03-16 17:06:59 -07:00
parent f14fe856b4
commit b5cd3c7a75
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ typedef struct {
#else
char __private[4];
#endif
} pthread_cond_t __attribute__((aligned(8)));
} pthread_cond_t __attribute__((aligned(sizeof(long))));
#define PTHREAD_COND_INITIALIZER { { 0 } }