Side by Side Diff: src/pkg/runtime/linux/386/defs.h
Issue 156077 :
code review 156077: Remove unnecessary execute bits. (Closed)
Patch Set: code review 156077: Remove unnecessary execute bits.
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/pkg/bignum/bignum.go
src/pkg/container/list/list.go
src/pkg/container/list/list_test.go
src/pkg/runtime/386/vlop.s
src/pkg/runtime/386/vlrt.c
src/pkg/runtime/arm/vlrt.c
src/pkg/runtime/darwin/386/rt0.s
src/pkg/runtime/freebsd/386/rt0.s
src/pkg/runtime/linux/386/defs.h
src/pkg/runtime/linux/386/rt0.s
src/pkg/runtime/linux/386/sys.s
src/pkg/runtime/nacl/386/defs.h
src/pkg/runtime/nacl/386/rt0.s
src/pkg/runtime/nacl/386/sys.s
OLD NEW
1 // godefs -f -m32 -f -D_LOOSE_KERNEL_NAMES -f -D__ARCH_SI_UID_T=__kernel_uid32_t
defs2.c 1 // godefs -f -m32 -f -D_LOOSE_KERNEL_NAMES -f -D__ARCH_SI_UID_T=__kernel_uid32_t
defs2.c
2 2
3 // MACHINE GENERATED - DO NOT EDIT. 3 // MACHINE GENERATED - DO NOT EDIT.
4 4
5 // Constants 5 // Constants
6 enum { 6 enum {
7 PROT_NONE = 0, 7 PROT_NONE = 0,
8 PROT_READ = 0x1, 8 PROT_READ = 0x1,
9 PROT_WRITE = 0x2, 9 PROT_WRITE = 0x2,
10 PROT_EXEC = 0x4, 10 PROT_EXEC = 0x4,
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading...
126 126
127 typedef struct Ucontext Ucontext; 127 typedef struct Ucontext Ucontext;
128 struct Ucontext { 128 struct Ucontext {
129 uint32 uc_flags; 129 uint32 uc_flags;
130 Ucontext *uc_link; 130 Ucontext *uc_link;
131 Sigaltstack uc_stack; 131 Sigaltstack uc_stack;
132 Sigcontext uc_mcontext; 132 Sigcontext uc_mcontext;
133 uint32 uc_sigmask; 133 uint32 uc_sigmask;
134 }; 134 };
135 #pragma pack off 135 #pragma pack off
OLD NEW