diff options
author | Ondřej Surý <ondrej@sury.org> | 2011-01-17 12:40:45 +0100 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2011-01-17 12:40:45 +0100 |
commit | 3e45412327a2654a77944249962b3652e6142299 (patch) | |
tree | bc3bf69452afa055423cbe0c5cfa8ca357df6ccf /src/pkg/runtime/linux/arm/defs.h | |
parent | c533680039762cacbc37db8dc7eed074c3e497be (diff) | |
download | golang-upstream/2011.01.12.tar.gz |
Imported Upstream version 2011.01.12upstream/2011.01.12
Diffstat (limited to 'src/pkg/runtime/linux/arm/defs.h')
-rw-r--r-- | src/pkg/runtime/linux/arm/defs.h | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/src/pkg/runtime/linux/arm/defs.h b/src/pkg/runtime/linux/arm/defs.h index b13985171..ff43d689a 100644 --- a/src/pkg/runtime/linux/arm/defs.h +++ b/src/pkg/runtime/linux/arm/defs.h @@ -10,6 +10,7 @@ enum { PROT_EXEC = 0x4, MAP_ANON = 0x20, MAP_PRIVATE = 0x2, + MAP_FIXED = 0x10, SA_RESTART = 0x10000000, SA_ONSTACK = 0x8000000, SA_RESTORER = 0x4000000, @@ -44,19 +45,19 @@ enum { SIGIO = 0x1d, SIGPWR = 0x1e, SIGSYS = 0x1f, - FPE_INTDIV = 0x30001, - FPE_INTOVF = 0x30002, - FPE_FLTDIV = 0x30003, - FPE_FLTOVF = 0x30004, - FPE_FLTUND = 0x30005, - FPE_FLTRES = 0x30006, - FPE_FLTINV = 0x30007, - FPE_FLTSUB = 0x30008, - BUS_ADRALN = 0x30001, - BUS_ADRERR = 0x30002, - BUS_OBJERR = 0x30003, - SEGV_MAPERR = 0x30001, - SEGV_ACCERR = 0x30002, + FPE_INTDIV = 0x1, + FPE_INTOVF = 0x2, + FPE_FLTDIV = 0x3, + FPE_FLTOVF = 0x4, + FPE_FLTUND = 0x5, + FPE_FLTRES = 0x6, + FPE_FLTINV = 0x7, + FPE_FLTSUB = 0x8, + BUS_ADRALN = 0x1, + BUS_ADRERR = 0x2, + BUS_OBJERR = 0x3, + SEGV_MAPERR = 0x1, + SEGV_ACCERR = 0x2, }; // Types |