2003-09-15 Jennifer Averett <jennifer@OARcorp.com>

* psxhdrs/sync01.c, psxhdrs/sync02.c: Correct fd creation
This commit is contained in:
Jennifer Averett
2003-09-15 18:45:24 +00:00
parent 1e2eec8694
commit e02bfe21ab
6 changed files with 12 additions and 4 deletions

View File

@@ -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>
* psx01/init.c, psx01/system.h, psx01/task.c, psx02/init.c,

View File

@@ -19,6 +19,6 @@ void test( void )
int fd;
int result;
int fd = 4;
fd = 4;
result = fsync( fd );
}

View File

@@ -19,6 +19,6 @@ void test( void )
int fd;
int result;
int fd = 4;
fd = 4;
result = fdatasync( fd );
}

View File

@@ -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>
* psx01/init.c, psx01/system.h, psx01/task.c, psx02/init.c,

View File

@@ -19,6 +19,6 @@ void test( void )
int fd;
int result;
int fd = 4;
fd = 4;
result = fsync( fd );
}

View File

@@ -19,6 +19,6 @@ void test( void )
int fd;
int result;
int fd = 4;
fd = 4;
result = fdatasync( fd );
}