$allocate static method
- Allocator $allocator, {
- required Pointer<
NativeFunction< sv_handler,sig_tFunction> > - required int sv_mask,
- 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;