Changeset 51f5d64c in rtems
- Timestamp:
- Apr 2, 1997, 4:26:39 PM (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 1c24fe7
- Parents:
- 892a536d
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/psxtests/psx05/init.c
r892a536d r51f5d64c 15 15 #include <errno.h> 16 16 17 #define MUTEX_BAD_ID -217 #define MUTEX_BAD_ID 0xfffffffe 18 18 19 19 void Print_mutexattr( -
c/src/tests/psxtests/psx06/init.c
r892a536d r51f5d64c 95 95 96 96 key_data = pthread_getspecific( Key_id ); 97 printf( "Init: Got the key value of % d\n",97 printf( "Init: Got the key value of %ld\n", 98 98 (rtems_unsigned32 *)key_data - Data_array ); 99 99 -
c/src/tests/psxtests/psx06/task.c
r892a536d r51f5d64c 37 37 38 38 key_data = pthread_getspecific( Key_id ); 39 printf( "Task_1: Got the key value of % d\n",39 printf( "Task_1: Got the key value of %ld\n", 40 40 (rtems_unsigned32 *)key_data - Data_array ); 41 41 if ( status ) -
c/src/tests/psxtests/psx06/task2.c
r892a536d r51f5d64c 38 38 39 39 key_data = pthread_getspecific( Key_id ); 40 printf( "Task_2: Got the key value of % d\n",40 printf( "Task_2: Got the key value of %ld\n", 41 41 (rtems_unsigned32 *)key_data - Data_array ); 42 42 if ( status ) -
c/src/tests/sptests/sp15/system.h
r892a536d r51f5d64c 53 53 54 54 #define Put_address_from_area_1( _to_be_printed ) \ 55 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 )55 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 ) 56 56 57 57 #define Put_address_from_area_2( _to_be_printed ) \ 58 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_2 )58 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_2 ) 59 59 60 60 /* end of include file */ -
c/src/tests/sptests/sp16/system.h
r892a536d r51f5d64c 72 72 73 73 #define Put_address_from_area_1( _to_be_printed ) \ 74 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 )74 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 ) 75 75 76 76 #define Put_address_from_area_2( _to_be_printed ) \ 77 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_2 )77 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_2 ) 78 78 79 79 #define Put_address_from_area_3( _to_be_printed ) \ 80 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_3 )80 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_3 ) 81 81 82 82 #define Put_address_from_area_4( _to_be_printed ) \ 83 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_4 )83 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_4 ) 84 84 85 85 /* end of include file */ -
c/src/tests/sptests/sp25/system.h
r892a536d r51f5d64c 52 52 53 53 #define Put_address_from_area_1( _to_be_printed ) \ 54 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 )54 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 ) 55 55 56 56 /* end of include file */ -
testsuites/psxtests/psx05/init.c
r892a536d r51f5d64c 15 15 #include <errno.h> 16 16 17 #define MUTEX_BAD_ID -217 #define MUTEX_BAD_ID 0xfffffffe 18 18 19 19 void Print_mutexattr( -
testsuites/psxtests/psx06/init.c
r892a536d r51f5d64c 95 95 96 96 key_data = pthread_getspecific( Key_id ); 97 printf( "Init: Got the key value of % d\n",97 printf( "Init: Got the key value of %ld\n", 98 98 (rtems_unsigned32 *)key_data - Data_array ); 99 99 -
testsuites/psxtests/psx06/task.c
r892a536d r51f5d64c 37 37 38 38 key_data = pthread_getspecific( Key_id ); 39 printf( "Task_1: Got the key value of % d\n",39 printf( "Task_1: Got the key value of %ld\n", 40 40 (rtems_unsigned32 *)key_data - Data_array ); 41 41 if ( status ) -
testsuites/psxtests/psx06/task2.c
r892a536d r51f5d64c 38 38 39 39 key_data = pthread_getspecific( Key_id ); 40 printf( "Task_2: Got the key value of % d\n",40 printf( "Task_2: Got the key value of %ld\n", 41 41 (rtems_unsigned32 *)key_data - Data_array ); 42 42 if ( status ) -
testsuites/sptests/sp15/system.h
r892a536d r51f5d64c 53 53 54 54 #define Put_address_from_area_1( _to_be_printed ) \ 55 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 )55 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 ) 56 56 57 57 #define Put_address_from_area_2( _to_be_printed ) \ 58 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_2 )58 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_2 ) 59 59 60 60 /* end of include file */ -
testsuites/sptests/sp16/system.h
r892a536d r51f5d64c 72 72 73 73 #define Put_address_from_area_1( _to_be_printed ) \ 74 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 )74 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 ) 75 75 76 76 #define Put_address_from_area_2( _to_be_printed ) \ 77 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_2 )77 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_2 ) 78 78 79 79 #define Put_address_from_area_3( _to_be_printed ) \ 80 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_3 )80 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_3 ) 81 81 82 82 #define Put_address_from_area_4( _to_be_printed ) \ 83 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_4 )83 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_4 ) 84 84 85 85 /* end of include file */ -
testsuites/sptests/sp25/system.h
r892a536d r51f5d64c 52 52 53 53 #define Put_address_from_area_1( _to_be_printed ) \ 54 printf( "0x%08 x", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 )54 printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 ) 55 55 56 56 /* end of include file */
Note: See TracChangeset
for help on using the changeset viewer.