summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp13/task1.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp13/task1.c')
-rw-r--r--testsuites/sptests/sp13/task1.c33
1 files changed, 20 insertions, 13 deletions
diff --git a/testsuites/sptests/sp13/task1.c b/testsuites/sptests/sp13/task1.c
index 57f1cf4725..471f861d4d 100644
--- a/testsuites/sptests/sp13/task1.c
+++ b/testsuites/sptests/sp13/task1.c
@@ -7,7 +7,7 @@
*
* Output parameters: NONE
*
- * COPYRIGHT (c) 1989-2007.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -20,26 +20,33 @@
#include "system.h"
#include <string.h> /* for memcmp */
+void dope_buffer(
+ unsigned char *buff,
+ int buff_size,
+ unsigned char v
+);
+
unsigned char big_send_buffer[2048];
unsigned char big_receive_buffer[2048];
long buffer[ MESSAGE_SIZE / sizeof(long) ];
-void dope_buffer(unsigned char *buff,
- int buff_size,
- uint32_t v)
+void dope_buffer(
+ unsigned char *buff,
+ int buff_size,
+ unsigned char v
+)
{
- int i;
- unsigned char ch;
+ int i;
+ unsigned char ch;
- ch = (' ' + (v % (0x7f - ' ')));
+ ch = (' ' + (v % (0x7f - ' ')));
- for (i=0; i<buff_size; i++)
- {
- *buff++ = ch++;
- if (ch >= 0x7f)
- ch = ' ';
- }
+ for (i=0; i<buff_size; i++) {
+ *buff++ = ch++;
+ if (ch >= 0x7f)
+ ch = ' ';
+ }
}
rtems_task Task_1(