1
0
mirror of https://github.com/janet-lang/janet synced 2025-09-21 12:14:10 +00:00

Merge pull request #432 from cellularmitosis/no_cloexec

Support for systems missing O_CLOEXEC
This commit is contained in:
Calvin Rose
2020-06-29 20:54:41 -05:00
committed by GitHub

View File

@@ -112,7 +112,7 @@ typedef struct {
#endif
static JanetStream *make_stream(int fd, int flags) {
JanetStream *stream = janet_abstract(&StreamAT, sizeof(JanetStream));
#ifndef SOCK_CLOEXEC
#if !defined(SOCK_CLOEXEC) && defined(O_CLOEXEC)
int extra = O_CLOEXEC;
#else
int extra = 0;