package polly

  1. Overview
  2. Docs

Source file constants.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module Epoll = struct
  let inp = 0x1
  let pri = 0x2
  let out = 0x4
  let rdnorm = 0x40
  let rdband = 0x80
  let wrnorm = 0x100
  let wrband = 0x200
  let msg = 0x400
  let err = 0x8
  let hup = 0x10
  let rdhup = 0x2000
  let wakeup = 0x20000000
  let oneshot = 0x40000000
  let et = 0x80000000
end
module EventFD = struct
  let cloexec = 0x80000
  let nonblock = 0x800
  let semaphore = 0x1
end