$allocate static method

Pointer<sigvec> $allocate(
  1. Allocator $allocator, {
  2. required Pointer<NativeFunction<sig_tFunction>> sv_handler,
  3. required int sv_mask,
  4. required int sv_flags,
})

Implementation

static ffi.Pointer<sigvec> $allocate(
ffi.Allocator $allocator, {
required ffi.Pointer<ffi.NativeFunction<ffi.Void Function(ffi.Int )>> sv_handler,
required int sv_mask,
required int sv_flags,
}) => $allocator<sigvec>()
..ref.sv_handler = sv_handler
..ref.sv_mask = sv_mask
..ref.sv_flags = sv_flags;