From c0e238ffb23cc8c49b981763fa0370f9cc5a712d 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 ef303ce..a3c15d9 100644 --- a/tests/queue5.c +++ b/tests/queue5.c @@ -33,7 +33,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 09ed14f..0907928 100644 --- a/tests/queue9.c +++ b/tests/queue9.c @@ -38,7 +38,7 @@ /* Test queue size */ -#define QUEUE_ENTRIES 8 +#define QUEUE_ENTRIES 4 /* Number of test threads */