LEFT | RIGHT |
(no file at all) | |
1 // mkerrors.sh -f -m32 | 1 // mkerrors.sh -f -m32 |
2 // MACHINE GENERATED BY THE COMMAND ABOVE; DO NOT EDIT | 2 // MACHINE GENERATED BY THE COMMAND ABOVE; DO NOT EDIT |
3 | 3 |
4 // godefs -c gcc -f -m32 -gsyscall -f -m32 _const.c | 4 // godefs -c gcc -f -m32 -gsyscall -f -m32 _const.c |
5 | 5 |
6 // MACHINE GENERATED - DO NOT EDIT. | 6 // MACHINE GENERATED - DO NOT EDIT. |
7 | 7 |
8 package syscall | 8 package syscall |
9 | 9 |
10 // Constants | 10 // Constants |
(...skipping 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1187 WNOHANG = 0x1 | 1187 WNOHANG = 0x1 |
1188 WNOTHREAD = 0x20000000 | 1188 WNOTHREAD = 0x20000000 |
1189 WNOWAIT = 0x1000000 | 1189 WNOWAIT = 0x1000000 |
1190 WORDSIZE = 0x20 | 1190 WORDSIZE = 0x20 |
1191 WSTOPPED = 0x2 | 1191 WSTOPPED = 0x2 |
1192 WUNTRACED = 0x2 | 1192 WUNTRACED = 0x2 |
1193 ) | 1193 ) |
1194 | 1194 |
1195 // Types | 1195 // Types |
1196 | 1196 |
1197 | |
1198 // Error table | 1197 // Error table |
1199 var errors = [...]string{ | 1198 var errors = [...]string{ |
1200 1: "operation not permitted", | 1199 1: "operation not permitted", |
1201 2: "no such file or directory", | 1200 2: "no such file or directory", |
1202 3: "no such process", | 1201 3: "no such process", |
1203 4: "interrupted system call", | 1202 4: "interrupted system call", |
1204 5: "input/output error", | 1203 5: "input/output error", |
1205 6: "no such device or address", | 1204 6: "no such device or address", |
1206 7: "argument list too long", | 1205 7: "argument list too long", |
1207 8: "exec format error", | 1206 8: "exec format error", |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1321 124: "wrong medium type", | 1320 124: "wrong medium type", |
1322 125: "operation canceled", | 1321 125: "operation canceled", |
1323 126: "required key not available", | 1322 126: "required key not available", |
1324 127: "key has expired", | 1323 127: "key has expired", |
1325 128: "key has been revoked", | 1324 128: "key has been revoked", |
1326 129: "key was rejected by service", | 1325 129: "key was rejected by service", |
1327 130: "owner died", | 1326 130: "owner died", |
1328 131: "state not recoverable", | 1327 131: "state not recoverable", |
1329 132: "unknown error 132", | 1328 132: "unknown error 132", |
1330 } | 1329 } |
LEFT | RIGHT |