interim commit

- fixed wrong enum definitions of qse_pio_hid_t
- changed code to use a static buffer if the command is short enough in qse_pio_init().
This commit is contained in:
2009-01-08 08:14:06 +00:00
parent 37344d7e09
commit 86a1d88307
5 changed files with 68 additions and 9 deletions

View File

@ -105,6 +105,11 @@
#define QSE_FORK() fork()
#endif
#ifdef SYS_execve
#define QSE_EXECVE(path,argv,envp) syscall(SYS_execve,path,argv,envp)
#else
#define QSE_EXECVE(path,argv,envp) execve(path,argv,envp)
#endif
#ifdef SYS_waitpid
#define QSE_WAITPID(pid,status,options) syscall(SYS_waitpid,pid,status,options)