2010-08-26 Joel Sherrill <joel.sherrill@oarcorp.com>

* psxenosys/init.c, psxenosys/psxenosys.scn: Update to reflect some of
	aio being implemented.
This commit is contained in:
Joel Sherrill
2010-08-26 19:35:09 +00:00
parent ad8b61431b
commit 5fa0adf64c
3 changed files with 5 additions and 10 deletions

View File

@@ -1,3 +1,8 @@
2010-08-26 Joel Sherrill <joel.sherrill@oarcorp.com>
* psxenosys/init.c, psxenosys/psxenosys.scn: Update to reflect some of
aio being implemented.
2010-08-19 Joel Sherrill <joel.sherrilL@OARcorp.com>
* psxenosys/init.c, psxenosys/psxenosys.scn: Update to reflect AIO

View File

@@ -56,18 +56,10 @@ void *POSIX_Init(
sc = lio_listio( 0, NULL, 0, NULL );
check_enosys( sc );
puts( "aio_cancel -- ENOSYS" );
sc = aio_cancel( 0, NULL );
check_enosys( sc );
puts( "aio_suspend -- ENOSYS" );
sc = aio_suspend( NULL, 0, NULL );
check_enosys( sc );
puts( "aio_fsync -- ENOSYS" );
sc = aio_fsync( 0, NULL );
check_enosys( sc );
puts( "clock_getcpuclockid -- ENOSYS" );
sc = clock_getcpuclockid( 0, NULL );
check_enosys( sc );

View File

@@ -1,8 +1,6 @@
*** POSIX TEST -- ENOSYS ***
lio_listio -- ENOSYS
aio_cancel -- ENOSYS
aio_suspend -- ENOSYS
aio_fsync -- ENOSYS
clock_getcpuclockid -- ENOSYS
clock_getenable_attr -- ENOSYS
clock_setenable_attr -- ENOSYS