Sha256: 5bdc783663a124a6fc6c9b8cb3e835259351b8c5508feab465aacc6b098167be

Contents?: true

Size: 383 Bytes

Versions: 3

Compression:

Stored size: 383 Bytes

Contents

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include "open.h"

int open_lock(const char *fn)
{
#ifdef O_CLOEXEC
  int fd = open(fn,O_RDWR | O_CLOEXEC);
  if (fd == -1) return -1;
#else
  int fd = open(fn,O_RDWR);
  if (fd == -1) return -1;
  fcntl(fd,F_SETFD,1);
#endif
  if (lockf(fd,F_LOCK,0) == -1) { close(fd); return -1; }
  return fd;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby_nacl-0.1.2 ext/ruby_nacl/NaCl/curvecp/open_lock.c
ruby_nacl-0.1.1 ext/ruby_nacl/NaCl/curvecp/open_lock.c
ruby_nacl-0.1.0 ext/ruby_nacl/NaCl/curvecp/open_lock.c