https://github.com/bcgsc/ntCard
Raw File
Tip revision: e8d401c263cbfbceb868263157ba2cab277084ca authored by Johnathan Wong on 24 January 2020, 23:25:27 UTC
release 1.2.0 (#37)
Tip revision: e8d401c
Fcontrol.cpp
#include "Fcontrol.h"
#include <fcntl.h>

/* Set the FD_CLOEXEC flag of the specified file descriptor. */
int setCloexec(int fd)
{
    int flags = fcntl(fd, F_GETFD, 0);
    if (flags == -1)
        return -1;
    flags |= FD_CLOEXEC;
    return fcntl(fd, F_SETFD, flags);
}
back to top