Py_set_inheritable_async_safe method Null safety

int Py_set_inheritable_async_safe (
  1. int fd,
  2. int inheritable,
  3. Pointer<Int32> atomic_flag_works
)

Implementation

int Py_set_inheritable_async_safe(
  int fd,
  int inheritable,
  ffi.Pointer<ffi.Int32> atomic_flag_works,
) {
  return _Py_set_inheritable_async_safe(
    fd,
    inheritable,
    atomic_flag_works,
  );
}