Memory pool block size fixed to 48 bytes

This commit is contained in:
Pavel Kirienko
2014-03-18 21:43:43 +04:00
parent 3dec56da00
commit ad253a80ac
+1 -1
View File
@@ -66,7 +66,7 @@ namespace uavcan
#if UAVCAN_MEM_POOL_BLOCK_SIZE
enum { MemPoolBlockSize = UAVCAN_MEM_POOL_BLOCK_SIZE };
#else
enum { MemPoolBlockSize = 32 + sizeof(void*) * 2 };//!< MemPoolBlockSize
enum { MemPoolBlockSize = 48 };
#endif
enum { MemPoolAlignment = 8 };