Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Asynchronous I/O on Solaris
Hi Yong,
No, that is just AIO. This issue is whether is supports KAIO on a particular datafile.
@ Regards, @ Steve Adams @ http://www.ixora.com.au/ @ http://www.christianity.net.au/
-----Original Message-----
From: yong huang [mailto:yong321_at_yahoo.com]
Sent: Thursday, 16 November 2000 6:31
To: Multiple recipients of list ORACLE-L
Subject: RE: Asynchronous I/O on Solaris
Hi, Steve,
I wonder if we can simply determine whether the OS supports AIO by sysconf(_SC_ASYNCHRONOUS_IO). The following is run on Solaris 2.6 for SPARC:
$ cat q.c
#include <unistd.h>
#include <stdio.h>
main()
{ printf("%ld\n", sysconf(_SC_ASYNCHRONOUS_IO));
}
$ gcc q.c
$ ./a.out
1
I assume if it returns 1, it supports it.
Yong Huang
yong321_at_yahoo.com
you wrote:
> Hi All,
>
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: yong huang INET: yong321_at_yahoo.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Wed Nov 15 2000 - 17:02:14 CST