pause function

int pause()

Suspend the process until a signal arrives. This always returns -1 and sets `errno' to EINTR.

This function is a cancellation point and therefore not marked with __THROW.

Implementation

int pause() {
  _pause ??=
      Libc().dylib.lookupFunction<ffi.Int32 Function(), _dart_pause>('pause');
  return _pause!();
}