diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-11-10 15:05:39 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-11-10 15:05:39 +0100 |
| commit | c2680fd0a73cb46aadad438d3377738d257ddaa2 (patch) | |
| tree | aa782109d49a3de5a375feee213183b9d5b8b697 /docs | |
| parent | 85c74c6bf8e361108423da996ee62a53ffeb01d1 (diff) | |
| download | box64-c2680fd0a73cb46aadad438d3377738d257ddaa2.tar.gz box64-c2680fd0a73cb46aadad438d3377738d257ddaa2.zip | |
Added BOX64_FUTEX_WAITV, on by default expect for BAD_SIGNAL build
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/USAGE.md | 5 | ||||
| -rw-r--r-- | docs/box64.pod | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index 6a75aada..6f7a53c2 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -301,6 +301,11 @@ Disables the load of vulkan libraries. * 0 : Load vulkan libraries if found. * 1 : Disables the load of vulkan libraries, both the native and the i386 version (can be useful on Pi4, where the vulkan driver is not quite there yet.) +#### BOX64_FUTEX_WAITV * +Use of the new fuext_waitc syscall + * 0 : Do not try to use it, return unsupported (Default for BAD_SIGNAL build) + * 1 : let program use the syscall if the host system support it (Default for other build) + #### BOX64_BASH * Define x86_64 bash to launch script * yyyy diff --git a/docs/box64.pod b/docs/box64.pod index 8be2e328..a14f9b73 100644 --- a/docs/box64.pod +++ b/docs/box64.pod @@ -463,6 +463,13 @@ Disables the load of vulkan libraries. * 0 : Load vulkan libraries if found. * 1 : Disables the load of vulkan libraries, both the native and the i386 version (can be useful on Pi4, where the vulkan driver is not quite there yet.) +=item B<BOX64_FUTEX_WAITV>=I<0|1> + +Use of the new fuext_waitc syscall + + * 0 : Do not try to use it, return unsupported (default for BAD_SIGNAL build) + * 1 : let program use the syscall if the host system support it (Default for other build) + =item B<BOX64_BASH>=I<yyyy> Define x86_64 bash to launch script. Will use yyyy as x86_64 bash to launch |