|
POSIX free application development
|
02/28/2014 12:53 PM
post109096
|
POSIX free application development
let us imagine a simple application whose fragment is below;
int fd = open("/home/my.txt", O_RDLY);
if( fd != -1 )
{
read(....);
close();
}
Is it possible to replace the calls to open() and read() and close() by QNX Native APIs like ConnectAttach(), MsgSend(),
ConnectDetach(), etc?
Where can I find the sample code for this QNX native call flow?
|
|
|