forked from Imagelibrary/rtems
2007-02-06 Joel Sherrill <joel@OARcorp.com>
* itronmbf01/init.c: Address size_t/uint32_t typing issues in message queue tests.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2007-02-06 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* itronmbf01/init.c: Address size_t/uint32_t typing issues in message
|
||||
queue tests.
|
||||
|
||||
2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* configure.ac: New BUG-REPORT address.
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
*
|
||||
* Output parameters: NONE
|
||||
*
|
||||
* COPYRIGHT (c) 1989-1999.
|
||||
* COPYRIGHT (c) 1989-2007.
|
||||
* On-Line Applications Research Corporation (OAR).
|
||||
*
|
||||
* The license and distribution terms for this file may be
|
||||
@@ -252,7 +252,7 @@ void TestRcv()
|
||||
{
|
||||
ER status;
|
||||
char buffer[200];
|
||||
int s;
|
||||
uint32_t s;
|
||||
|
||||
puts( "Init - rcv_mbf - bad id (less than -4) - E_OACV" );
|
||||
status = rcv_mbf(buffer, &s, -5);
|
||||
@@ -289,7 +289,7 @@ void TestPrcv()
|
||||
{
|
||||
ER status;
|
||||
char buffer[200];
|
||||
int s;
|
||||
uint32_t s;
|
||||
|
||||
puts( "Init - prcv_mbf - bad id (less than -4) - E_OACV" );
|
||||
status = prcv_mbf(buffer, &s, -5);
|
||||
@@ -325,7 +325,7 @@ void TestTrcv()
|
||||
{
|
||||
ER status;
|
||||
char buffer[200];
|
||||
int s;
|
||||
uint32_t s;
|
||||
|
||||
puts( "Init - trcv_mbf - bad id (less than -4) - E_OACV" );
|
||||
status = trcv_mbf(buffer, &s, -5, 5000);
|
||||
|
||||
Reference in New Issue
Block a user