diff --git a/src/util-pool-thread.h b/src/util-pool-thread.h index c1704ce977..1d2bbd47ff 100644 --- a/src/util-pool-thread.h +++ b/src/util-pool-thread.h @@ -42,7 +42,8 @@ struct PoolThreadElement_ { SCMutex lock; /**< lock, should have low contention */ Pool *pool; /**< actual pool */ -} __attribute__((aligned(CLS))); +}; +// __attribute__((aligned(CLS))); <- VJ: breaks on clang 32bit, segv in PoolThreadTestGrow01 typedef struct PoolThreadElement_ PoolThreadElement;