From 7e939d50da5d9a18540a26947102cfc5230fbedb Mon Sep 17 00:00:00 2001 From: Thomas Preud'homme Date: Thu, 11 Jun 2009 23:35:41 +0200 Subject: [PATCH] Fix in communication techniques bench * SHARED_MEM_SPACE is now based on BUF_SIZE --- communication_techniques/include/shared_mem_comm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/communication_techniques/include/shared_mem_comm.h b/communication_techniques/include/shared_mem_comm.h index b50b5f2..95fc539 100644 --- a/communication_techniques/include/shared_mem_comm.h +++ b/communication_techniques/include/shared_mem_comm.h @@ -6,7 +6,7 @@ /* Non standard include */ #include -#define SHARED_SPACE_SIZE (2 * CACHE_LINE_SIZE) +#define SHARED_SPACE_SIZE (2 * BUF_SIZE) struct communication_assoc {