Changeset b1274bd9 in rtems for testsuites/support
- Timestamp:
- Nov 30, 2009, 3:33:25 AM (10 years ago)
- Branches:
- 4.10, 4.11, master
- Children:
- 3495c57
- Parents:
- 44b06ca
- Location:
- testsuites/support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/support/include/tmacros.h
r44b06ca rb1274bd9 260 260 * certain system types on different targets. 261 261 */ 262 262 263 263 /* HACK: Presume time_t to be a "long" */ 264 264 /* HACK: There is no portable way to print time_t's */ -
testsuites/support/src/test_support.c
r44b06ca rb1274bd9 23 23 static char Longest_Name[PATH_MAX + 1]; 24 24 25 const char *Get_Too_Long_Name(void) 25 const char *Get_Too_Long_Name(void) 26 26 { 27 27 int i; … … 44 44 45 45 void Allocate_majority_of_workspace( int smallest ) 46 { 46 { 47 47 bool result; 48 48 Heap_Information_block info; … … 55 55 56 56 do { 57 result = rtems_workspace_allocate( 58 info.Free.largest-16, 59 &temp 57 result = rtems_workspace_allocate( 58 info.Free.largest-16, 59 &temp 60 60 ); 61 61 if ((!result) || (!temp))
Note: See TracChangeset
for help on using the changeset viewer.