clock_nanosleep method

int clock_nanosleep(
  1. int __clock_id,
  2. int __flags,
  3. Pointer<timespec> __req,
  4. Pointer<timespec> __rem,
)

Implementation

int clock_nanosleep(
  int __clock_id,
  int __flags,
  ffi.Pointer<timespec> __req,
  ffi.Pointer<timespec> __rem,
) {
  return _clock_nanosleep(
    __clock_id,
    __flags,
    __req,
    __rem,
  );
}