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:
@ -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)
|
||||
|
Reference in New Issue
Block a user