SetThreadStackGuarantee method

int SetThreadStackGuarantee(
  1. Pointer<Uint64> StackSizeInBytes
)

Implementation

int SetThreadStackGuarantee(
  ffi.Pointer<ffi.Uint64> StackSizeInBytes,
) {
  return (_SetThreadStackGuarantee ??= _dylib.lookupFunction<
      _c_SetThreadStackGuarantee,
      _dart_SetThreadStackGuarantee>('SetThreadStackGuarantee'))(
    StackSizeInBytes,
  );
}