mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 22:48:23 +00:00
* sp04/system.h, sp04/task1.c, sp04/tswitch.c, sp07/init.c, sp12/init.c, sp13/putbuff.c, sp13/system.h, sp13/task1.c, sp15/init.c, sp16/system.h, sp19/fptask.c, sp25/system.h, sp26/task1.c, sp27/init.c, sp28/init.c, sp29/init.c, sp31/task1.c, sp33/init.c, sp34/changepri.c, sp35/priinv.c, sp37/init.c, sp38/init.c, sp39/init.c, sp41/init.c, sp42/init.c, sp43/init.c, sp44/init.c, sp45/init.c, sp46/init.c, sp47/init.c, sp48/init.c, spfatal03/testcase.h, spfatal05/testcase.h, spfatal06/testcase.h, spfatal_support/system.h, spobjgetnext/init.c, spsize/getint.c, spsize/size.c: Fix warnings.
39 lines
773 B
C
39 lines
773 B
C
/* Put_buffer
|
|
*
|
|
* This test routine prints the given buffer.
|
|
* buffer.
|
|
*
|
|
* Input parameters:
|
|
* buffer - pointer to message buffer to be printer
|
|
*
|
|
* Output parameters: NONE
|
|
*
|
|
* COPYRIGHT (c) 1989-2009.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include "system.h"
|
|
|
|
void Put_buffer(
|
|
void *buffer
|
|
)
|
|
{
|
|
int i, j;
|
|
char c;
|
|
long *b = buffer;
|
|
|
|
for ( i = 0; i < (int) (MESSAGE_SIZE / sizeof(long)); i++ ) {
|
|
for ( j = sizeof(long) - 1; j >= 0; j-- ) {
|
|
if ( (c = (char)(b[i] >> (8 * j)) & 0xFF) == 0 )
|
|
return;
|
|
printf( "%c", c );
|
|
}
|
|
}
|
|
}
|