1
0
mirror of https://github.com/golang/go synced 2024-10-02 14:28:38 -06:00

Fix the sigaction declaration to match the system for Linux.

I don't know whether Darwin needs a change here.

R=rsc
http://go/go-review/1013010
This commit is contained in:
Ian Lance Taylor 2009-10-22 23:51:54 -07:00
parent 057f7d5b07
commit fd5fa4b301

View File

@ -7,4 +7,4 @@ int32 futex(uint32*, int32, uint32, Timespec*, uint32*, uint32);
int32 clone(int32, void*, M*, G*, void(*)(void));
struct Sigaction;
void rt_sigaction(int64, struct Sigaction*, void*, uint64);
void rt_sigaction(uintptr, struct Sigaction*, void*, uintptr);