nice function

int nice(
  1. int increment
)

Add increment] to priority of the current process and returns the new process priority.

Implementation

int nice(
  int increment,
) {
  _nice ??= Libc()
      .dylib
      .lookupFunction<ffi.Int32 Function(ffi.Int32), _dart_nice>('nice');
  return _nice!(
    increment,
  );
}