1 | |
---|
2 | /* file SYERRORS.H |
---|
3 | * ========== |
---|
4 | * |
---|
5 | * version 5, 22-May-2006 |
---|
6 | * |
---|
7 | * error codes of module SYSCALL |
---|
8 | * K. Stammler, 16-NOV-91 |
---|
9 | */ |
---|
10 | |
---|
11 | |
---|
12 | /* |
---|
13 | * |
---|
14 | * SeismicHandler, seismic analysis software |
---|
15 | * Copyright (C) 1996, Klaus Stammler, Federal Institute for Geosciences |
---|
16 | * and Natural Resources (BGR), Germany |
---|
17 | * |
---|
18 | * This program is free software; you can redistribute it and/or modify |
---|
19 | * it under the terms of the GNU General Public License as published by |
---|
20 | * the Free Software Foundation; either version 2 of the License, or |
---|
21 | * (at your option) any later version. |
---|
22 | * |
---|
23 | * This program is distributed in the hope that it will be useful, |
---|
24 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
25 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
26 | * GNU General Public License for more details. |
---|
27 | * |
---|
28 | * You should have received a copy of the GNU General Public License |
---|
29 | * along with this program; if not, write to the Free Software |
---|
30 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
---|
31 | * |
---|
32 | */ |
---|
33 | |
---|
34 | #define SYE_NOERROR 0 |
---|
35 | #define SYE_OFFSET 1500 |
---|
36 | #define SYE_NOLONG (SYE_OFFSET+1) /* only word length implemented */ |
---|
37 | #define SYE_MEMOVFL (SYE_OFFSET+2) /* memory overlow */ |
---|
38 | #define SYE_OSCALL (SYE_OFFSET+3) /* error calling operating system */ |
---|
39 | #define SYE_NOTIMPL (SYE_OFFSET+4) /* not implemented */ |
---|
40 | #define SYE_LOCALINF (SYE_OFFSET+5) /* error in localinf routine */ |
---|
41 | #define SYE_STROVFL (SYE_OFFSET+6) /* string overflow */ |
---|
42 | #define SYE_ZEROALLOC (SYE_OFFSET+7) /* zero allocation */ |
---|
43 | #define SYE_SUBMIT (SYE_OFFSET+8) /* error submitting job */ |
---|