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>
|
2006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* configure.ac: New BUG-REPORT address.
|
* configure.ac: New BUG-REPORT address.
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
*
|
*
|
||||||
* Output parameters: NONE
|
* Output parameters: NONE
|
||||||
*
|
*
|
||||||
* COPYRIGHT (c) 1989-1999.
|
* COPYRIGHT (c) 1989-2007.
|
||||||
* On-Line Applications Research Corporation (OAR).
|
* On-Line Applications Research Corporation (OAR).
|
||||||
*
|
*
|
||||||
* The license and distribution terms for this file may be
|
* The license and distribution terms for this file may be
|
||||||
@@ -250,9 +250,9 @@ void TestRef()
|
|||||||
|
|
||||||
void TestRcv()
|
void TestRcv()
|
||||||
{
|
{
|
||||||
ER status;
|
ER status;
|
||||||
char buffer[200];
|
char buffer[200];
|
||||||
int s;
|
uint32_t s;
|
||||||
|
|
||||||
puts( "Init - rcv_mbf - bad id (less than -4) - E_OACV" );
|
puts( "Init - rcv_mbf - bad id (less than -4) - E_OACV" );
|
||||||
status = rcv_mbf(buffer, &s, -5);
|
status = rcv_mbf(buffer, &s, -5);
|
||||||
@@ -287,9 +287,9 @@ void TestRcv()
|
|||||||
|
|
||||||
void TestPrcv()
|
void TestPrcv()
|
||||||
{
|
{
|
||||||
ER status;
|
ER status;
|
||||||
char buffer[200];
|
char buffer[200];
|
||||||
int s;
|
uint32_t s;
|
||||||
|
|
||||||
puts( "Init - prcv_mbf - bad id (less than -4) - E_OACV" );
|
puts( "Init - prcv_mbf - bad id (less than -4) - E_OACV" );
|
||||||
status = prcv_mbf(buffer, &s, -5);
|
status = prcv_mbf(buffer, &s, -5);
|
||||||
@@ -323,9 +323,9 @@ void TestPrcv()
|
|||||||
|
|
||||||
void TestTrcv()
|
void TestTrcv()
|
||||||
{
|
{
|
||||||
ER status;
|
ER status;
|
||||||
char buffer[200];
|
char buffer[200];
|
||||||
int s;
|
uint32_t s;
|
||||||
|
|
||||||
puts( "Init - trcv_mbf - bad id (less than -4) - E_OACV" );
|
puts( "Init - trcv_mbf - bad id (less than -4) - E_OACV" );
|
||||||
status = trcv_mbf(buffer, &s, -5, 5000);
|
status = trcv_mbf(buffer, &s, -5, 5000);
|
||||||
|
|||||||
Reference in New Issue
Block a user