mirror of
https://github.com/bellard/quickjs.git
synced 2025-09-30 15:04:24 +03:00
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:
6
compat/test-closefrom.c
Normal file
6
compat/test-closefrom.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <unistd.h>
|
||||
|
||||
int main(void) {
|
||||
closefrom(3);
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user