From c471814b3c61a8230f464880512f34150e7ba42c Mon Sep 17 00:00:00 2001 From: Kelvin Lawson Date: Fri, 27 May 2011 17:16:48 +0100 Subject: [PATCH] Reduce BSS size in queue5 and queue9 module - brings the BSS on ATmega16 to just under 1KB, allowing those tests to be run on that target. --- tests/queue5.c | 2 +- tests/queue9.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/queue5.c b/tests/queue5.c index b6b81ec..4cf5dbd 100644 --- a/tests/queue5.c +++ b/tests/queue5.c @@ -34,7 +34,7 @@ /* Number of queue entries */ -#define QUEUE_ENTRIES 8 +#define QUEUE_ENTRIES 4 /* Number of test threads */ diff --git a/tests/queue9.c b/tests/queue9.c index 10e740b..d914ee9 100644 --- a/tests/queue9.c +++ b/tests/queue9.c @@ -39,7 +39,7 @@ /* Test queue size */ -#define QUEUE_ENTRIES 8 +#define QUEUE_ENTRIES 4 /* Number of test threads */