timer_create method

int timer_create(
  1. int __clock_id,
  2. Pointer<sigevent> __evp,
  3. Pointer<Pointer<Void>> __timerid
)

Implementation

int timer_create(
  int __clock_id,
  ffi.Pointer<sigevent> __evp,
  ffi.Pointer<ffi.Pointer<ffi.Void>> __timerid,
) {
  return _timer_create(
    __clock_id,
    __evp,
    __timerid,
  );
}