am 1ffc89e3: am f14fe856: Merge "Add alignment to opaque types."

* commit '1ffc89e301ae167ad5843ae570be0d779e37bec8':
  Add alignment to opaque types.
This commit is contained in:
Christopher Ferris 2015-03-16 23:51:31 +00:00 committed by Android Git Automerger
commit 28654c922d

View File

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