forked from Imagelibrary/rtems
2003-09-15 Jennifer Averett <jennifer@OARcorp.com>
* psxhdrs/sync01.c, psxhdrs/sync02.c: Correct fd creation
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2003-09-15 Jennifer Averett <jennifer@OARcorp.com>
|
||||||
|
|
||||||
|
* psxhdrs/sync01.c, psxhdrs/sync02.c: Correct fd creation
|
||||||
|
|
||||||
2003-09-04 Joel Sherrill <joel@OARcorp.com>
|
2003-09-04 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* psx01/init.c, psx01/system.h, psx01/task.c, psx02/init.c,
|
* psx01/init.c, psx01/system.h, psx01/task.c, psx02/init.c,
|
||||||
|
|||||||
@@ -19,6 +19,6 @@ void test( void )
|
|||||||
int fd;
|
int fd;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
int fd = 4;
|
fd = 4;
|
||||||
result = fsync( fd );
|
result = fsync( fd );
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,6 +19,6 @@ void test( void )
|
|||||||
int fd;
|
int fd;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
int fd = 4;
|
fd = 4;
|
||||||
result = fdatasync( fd );
|
result = fdatasync( fd );
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
2003-09-15 Jennifer Averett <jennifer@OARcorp.com>
|
||||||
|
|
||||||
|
* psxhdrs/sync01.c, psxhdrs/sync02.c: Correct fd creation
|
||||||
|
|
||||||
2003-09-04 Joel Sherrill <joel@OARcorp.com>
|
2003-09-04 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* psx01/init.c, psx01/system.h, psx01/task.c, psx02/init.c,
|
* psx01/init.c, psx01/system.h, psx01/task.c, psx02/init.c,
|
||||||
|
|||||||
@@ -19,6 +19,6 @@ void test( void )
|
|||||||
int fd;
|
int fd;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
int fd = 4;
|
fd = 4;
|
||||||
result = fsync( fd );
|
result = fsync( fd );
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,6 +19,6 @@ void test( void )
|
|||||||
int fd;
|
int fd;
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
int fd = 4;
|
fd = 4;
|
||||||
result = fdatasync( fd );
|
result = fdatasync( fd );
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user