pull-prototypes-to-head-20020821
[openafs.git] / src / finale / translate_et.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #include <afsconfig.h>
11 #include <afs/param.h>
12
13 RCSID("$Header$");
14
15 #include <afs/com_err.h>
16 #include <rx/rxkad.h>
17 #include <afs/kautils.h>
18 #include <afs/auth.h>
19 #include <afs/cellconfig.h>
20 #include <afs/cmd.h>
21 #include <afs/vlserver.h>
22 #include <afs/pterror.h>
23 #include <afs/bnode.h>
24 #include <afs/volser.h>
25 #include <ubik.h>
26 #ifdef  AFS_AIX32_ENV
27 #include <signal.h>
28 #endif
29
30
31 #define ERRCODE_RANGE 8                 /* from error_table.h */
32
33 #include "AFS_component_version_number.c"
34
35 int main (int argc, char *argv[])
36 {
37     int  i;
38     afs_int32 code;
39     afs_int32 offset;
40
41 #ifdef  AFS_AIX32_ENV
42     /*
43      * The following signal action for AIX is necessary so that in case of a 
44      * crash (i.e. core is generated) we can include the user's data section 
45      * in the core dump. Unfortunately, by default, only a partial core is
46      * generated which, in many cases, isn't too useful.
47      */
48     struct sigaction nsa;
49     
50     sigemptyset(&nsa.sa_mask);
51     nsa.sa_handler = SIG_DFL;
52     nsa.sa_flags = SA_FULLDUMP;
53     sigaction(SIGSEGV, &nsa, NULL);
54 #endif
55     initialize_KA_error_table();
56     initialize_RXK_error_table();
57     initialize_KTC_error_table();
58     initialize_ACFG_error_table();
59     initialize_CMD_error_table();
60     initialize_VL_error_table();
61     initialize_PT_error_table();
62     initialize_BZ_error_table();
63     initialize_U_error_table();
64     initialize_VOLS_error_table();
65
66     if (argc < 2) {
67         fprintf (stderr, "Usage is: %s [<code>]+\n", argv[0]);
68         exit (1);
69     }
70
71     for (i=1; i<argc; i++) {
72         code = atoi(argv[i]);
73         offset = code & ((1<<ERRCODE_RANGE)-1);
74
75         printf ("%d (%s).%d = %s\n", (int) code, error_table_name (code), (int) offset,
76                 error_message (code));
77     }
78     return 0;
79 }
80