diff options
Diffstat (limited to 'src/runtime/runtime.h')
| -rw-r--r-- | src/runtime/runtime.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h index 4b282c1265..e37786e4fb 100644 --- a/src/runtime/runtime.h +++ b/src/runtime/runtime.h @@ -48,6 +48,7 @@ typedef union Note Note; typedef struct Stktop Stktop; typedef struct String *string; typedef struct Usema Usema; +typedef struct SigTab SigTab; /* * per cpu declaration @@ -179,9 +180,15 @@ struct Alg }; struct SigTab { - int32 catch; + int32 flags; int8 *name; }; +enum +{ + SigCatch = 1<<0, + SigIgnore = 1<<1, + SigRestart = 1<<2, +}; // (will be) shared with go; edit ../cmd/6g/sys.go too. // should move out of sys.go eventually. @@ -305,8 +312,6 @@ uint8* sys·mmap(byte*, uint32, int32, int32, int32, uint32); void sys·memclr(byte*, uint32); void sys·setcallerpc(void*, void*); void* sys·getcallerpc(void*); -void sys·sigaction(int64, void*, void*); -void sys·rt_sigaction(int64, void*, void*, uint64); /* * runtime go-called |
