IMPORT_C void | PosixServerName | ( | TDes & | aBuffer | ) |
Support for multi-thread operation is achieved using a CPosixServer active object - this can be installed in an active scheduler in the current thread, or run in a separate thread.
IMPORT_C TInt | SpawnPosixServerThread | ( | ) |
IMPORT_C int | ioctl | ( | int | aFid, |
int | aCmd, | |||
void * | aParam, | |||
TRequestStatus & | aStatus | |||
) |
Support for asynchronous ioctl There are no guarantees about when the parameters will be processed - some implementations may process the parameters in both the ioctl() and the ioctl_complete() functions. Do not wait on the TRequestStatus unless ioctl() returns 0.
Dubious asynchronous interface to ioctl, must be called from C++
IMPORT_C int | ioctl_complete | ( | int | aFid, |
int | aCmd, | |||
void * | aParam, | |||
TRequestStatus & | aStatus | |||
) |
IMPORT_C int | ioctl_cancel | ( | int | aFid | ) |
IMPORT_C int | _ioctl_r | ( | struct _reent * | r, |
int | aFid, | |||
int | aCmd, | |||
void * | aParam, | |||
TRequestStatus & | aStatus | |||
) |
A reentrant version of a ioctl().
IMPORT_C int | _ioctl_complete_r | ( | struct _reent * | r, |
int | aFid, | |||
int | aCmd, | |||
void * | aParam, | |||
TRequestStatus & | aStatus | |||
) |
A reentrant version of a ioctl_complete().
IMPORT_C void | __crt0 | ( | int & | argc, |
char **& | argv, | |||
char **& | envp | |||
) |
Support for crt0 variants Do whatever is necessary to get the command line arguments, environment etc. NB. This calls chdir(), so start the PosixServer before calling this if you want one.