Changeset 9ab1039d in rtems
- Timestamp:
- 10/12/11 04:21:57 (11 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 2dc3399
- Parents:
- 077184fd
- Location:
- testsuites/psxtests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/psxtests/ChangeLog
r077184fd r9ab1039d 1 1 2011-10-12 Ralf Corsépius <ralf.corsepius@rtems.org> 2 2 3 * psxhdrs/sync01.c, psxhdrs/sync02.c: Let test() return values 4 (avoid warnings). 3 5 * psxhdrs/time01.c, psxhdrs/time02.c, psxhdrs/time03.c, 4 6 psxhdrs/time04.c, psxhdrs/time05.c, psxhdrs/time06.c, -
testsuites/psxtests/psxhdrs/sync01.c
r077184fd r9ab1039d 19 19 #include <unistd.h> 20 20 21 voidtest( void );21 int test( void ); 22 22 23 voidtest( void )23 int test( void ) 24 24 { 25 25 int fd; … … 28 28 fd = 4; 29 29 result = fsync( fd ); 30 31 return result; 30 32 } -
testsuites/psxtests/psxhdrs/sync02.c
r077184fd r9ab1039d 19 19 #include <unistd.h> 20 20 21 voidtest( void );21 int test( void ); 22 22 23 voidtest( void )23 int test( void ) 24 24 { 25 25 int fd; … … 28 28 fd = 4; 29 29 result = fdatasync( fd ); 30 31 return result; 30 32 }
Note: See TracChangeset
for help on using the changeset viewer.