Re: [go-nuts] Making syscalls in the syscall package

2020-11-17 Thread Ian Lance Taylor
On Tue, Nov 17, 2020 at 8:20 AM Aidan Hahn wrote: > > I am currently patching my local go runtime to fix a bug it has. I would like > to make the signal() syscall, or at least the sigaction() syscall from inside > the syscall package but it looks like those functions are defined as private >

[go-nuts] Making syscalls in the syscall package

2020-11-17 Thread Aidan Hahn
Good Morning/Afternoon/Evening, I am currently patching my local go runtime to fix a bug it has. I would like to make the signal() syscall, or at least the sigaction() syscall from inside the syscall package but it looks like those functions are defined as private within the runtime package.