Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1149)

Delta Between Two Patch Sets: src/pkg/runtime/linux/386/defs.h

Issue 4711045: code review 4711045: runtime: improve Linux mutex (Closed)
Left Patch Set: diff -r 627c9b93bae9 https://go.googlecode.com/hg/ Created 13 years, 7 months ago
Right Patch Set: diff -r c162ec4be385 https://go.googlecode.com/hg/ Created 13 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/runtime/arm/atomic.c ('k') | src/pkg/runtime/linux/386/sys.s » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // godefs -f -m32 -f -I/home/rsc/pub/linux-2.6/arch/x86/include -f -I/home/rsc/p ub/linux-2.6/include -f -D_LOOSE_KERNEL_NAMES -f -D__ARCH_SI_UID_T=__kernel_uid3 2_t defs2.c 1 // godefs -f -m32 -f -I/home/rsc/pub/linux-2.6/arch/x86/include -f -I/home/rsc/p ub/linux-2.6/include -f -D_LOOSE_KERNEL_NAMES -f -D__ARCH_SI_UID_T=__kernel_uid3 2_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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 FPE_FLTINV = 0x7, 54 FPE_FLTINV = 0x7,
55 FPE_FLTSUB = 0x8, 55 FPE_FLTSUB = 0x8,
56 BUS_ADRALN = 0x1, 56 BUS_ADRALN = 0x1,
57 BUS_ADRERR = 0x2, 57 BUS_ADRERR = 0x2,
58 BUS_OBJERR = 0x3, 58 BUS_OBJERR = 0x3,
59 SEGV_MAPERR = 0x1, 59 SEGV_MAPERR = 0x1,
60 SEGV_ACCERR = 0x2, 60 SEGV_ACCERR = 0x2,
61 ITIMER_REAL = 0, 61 ITIMER_REAL = 0,
62 ITIMER_VIRTUAL = 0x1, 62 ITIMER_VIRTUAL = 0x1,
63 ITIMER_PROF = 0x2, 63 ITIMER_PROF = 0x2,
64 O_RDONLY = 0,
65 O_CLOEXEC = 02000000,
64 }; 66 };
65 67
66 // Types 68 // Types
67 #pragma pack on 69 #pragma pack on
68 70
69 typedef struct Fpreg Fpreg; 71 typedef struct Fpreg Fpreg;
70 struct Fpreg { 72 struct Fpreg {
71 uint16 significand[4]; 73 uint16 significand[4];
72 uint16 exponent; 74 uint16 exponent;
73 }; 75 };
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 Sigcontext uc_mcontext; 182 Sigcontext uc_mcontext;
181 uint32 uc_sigmask; 183 uint32 uc_sigmask;
182 }; 184 };
183 185
184 typedef struct Itimerval Itimerval; 186 typedef struct Itimerval Itimerval;
185 struct Itimerval { 187 struct Itimerval {
186 Timeval it_interval; 188 Timeval it_interval;
187 Timeval it_value; 189 Timeval it_value;
188 }; 190 };
189 #pragma pack off 191 #pragma pack off
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b