diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-07-13 19:01:05 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-07-13 19:01:05 +0200 |
| commit | e0a7f775c98550edf8ef4b1d1c5eab77da98bc13 (patch) | |
| tree | 6b6de8cc7e103ee18d477203fd59191df7218e37 /src | |
| parent | f1d238b78ddb7e8394e8b951a50716f3646509ed (diff) | |
| download | box64-e0a7f775c98550edf8ef4b1d1c5eab77da98bc13.tar.gz box64-e0a7f775c98550edf8ef4b1d1c5eab77da98bc13.zip | |
Added some posix_* wrapped functions (for #44)
Diffstat (limited to 'src')
| -rwxr-xr-x | src/wrapped/wrappedlibc_private.h | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/src/wrapped/wrappedlibc_private.h b/src/wrapped/wrappedlibc_private.h index 1a4df882..9bc38daa 100755 --- a/src/wrapped/wrappedlibc_private.h +++ b/src/wrapped/wrappedlibc_private.h @@ -1324,29 +1324,27 @@ GOW(posix_fadvise64, iFilli) //GO(posix_madvise, GOW(posix_memalign, iFpLL) //GOW(posix_openpt, -//GO(posix_spawn, -//GO(posix_spawn, -//GO(posix_spawnattr_destroy, -//GO(posix_spawnattr_getflags, +GO(posix_spawn, iFpppppp) //Need wrapping? +GO(posix_spawnattr_destroy, iFp) +GO(posix_spawnattr_getflags, iFpp) //GO(posix_spawnattr_getpgroup, //GO(posix_spawnattr_getschedparam, //GO(posix_spawnattr_getschedpolicy, -//GO(posix_spawnattr_getsigdefault, -//GO(posix_spawnattr_getsigmask, -//GO(posix_spawnattr_init, -//GO(posix_spawnattr_setflags, +GO(posix_spawnattr_getsigdefault, iFpp) +GO(posix_spawnattr_getsigmask, iFpp) +GO(posix_spawnattr_init, iFp) +GO(posix_spawnattr_setflags, iFpw) //GO(posix_spawnattr_setpgroup, //GO(posix_spawnattr_setschedparam, //GO(posix_spawnattr_setschedpolicy, -//GO(posix_spawnattr_setsigdefault, -//GO(posix_spawnattr_setsigmask, +GO(posix_spawnattr_setsigdefault, iFpp) +GO(posix_spawnattr_setsigmask, iFpp) //GO(posix_spawn_file_actions_addclose, -//GO(posix_spawn_file_actions_adddup2, +GO(posix_spawn_file_actions_adddup2, iFpii) //GO(posix_spawn_file_actions_addopen, -//GO(posix_spawn_file_actions_destroy, -//GO(posix_spawn_file_actions_init, -//GO(posix_spawnp, -//GO(posix_spawnp, +GO(posix_spawn_file_actions_destroy, iFp) +GO(posix_spawn_file_actions_init, iFp) +GO(posix_spawnp, iFpppppp) GO(ppoll, iFpLpp) //GO(__ppoll_chk, GOW(prctl, iFiLLLL) |