$allocate static method

Pointer<sigstack> $allocate(
  1. Allocator $allocator, {
  2. required Pointer<Char> ss_sp,
  3. required int ss_onstack,
})

Implementation

static ffi.Pointer<sigstack> $allocate(
ffi.Allocator $allocator, {
required ffi.Pointer<ffi.Char> ss_sp,
required int ss_onstack,
}) => $allocator<sigstack>()
..ref.ss_sp = ss_sp
..ref.ss_onstack = ss_onstack;