Improve js_os_exec (#295)

- use $(shell) make command to test if closefrom() is available
- use closefrom() if available in js_os_exec()
- limit the fallback loop to 1024 handles to avoid costly loop on linux alpine.
PR inspired by @nicolas-duteil-nova
This commit is contained in:
Charlie Gordon
2024-05-10 01:57:55 +02:00
committed by GitHub
parent 97be5a32af
commit d378a9f3a5
3 changed files with 32 additions and 3 deletions

6
compat/test-closefrom.c Normal file
View File

@@ -0,0 +1,6 @@
#include <unistd.h>
int main(void) {
closefrom(3);
return 0;
}