comerr-rename-20070410
[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
14     ("$Header$");
15
16 #include <afs/com_err.h>
17 #include <rx/rxkad.h>
18 #include <afs/kautils.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
36 main(int argc, char *argv[])
37 {
38     int i;
39     afs_int32 code;
40     afs_int32 offset;
41
42 #ifdef  AFS_AIX32_ENV
43     /*
44      * The following signal action for AIX is necessary so that in case of a 
45      * crash (i.e. core is generated) we can include the user's data section 
46      * in the core dump. Unfortunately, by default, only a partial core is
47      * generated which, in many cases, isn't too useful.
48      */
49     struct sigaction nsa;
50
51     sigemptyset(&nsa.sa_mask);
52     nsa.sa_handler = SIG_DFL;
53     nsa.sa_flags = SA_FULLDUMP;
54     sigaction(SIGSEGV, &nsa, NULL);
55 #endif
56     initialize_KA_error_table();
57     initialize_RXK_error_table();
58     initialize_KTC_error_table();
59     initialize_ACFG_error_table();
60     initialize_CMD_error_table();
61     initialize_VL_error_table();
62     initialize_PT_error_table();
63     initialize_BZ_error_table();
64     initialize_U_error_table();
65     initialize_VOLS_error_table();
66
67     if (argc < 2) {
68         fprintf(stderr, "Usage is: %s [<code>]+\n", argv[0]);
69         exit(1);
70     }
71
72     for (i = 1; i < argc; i++) {
73         code = atoi(argv[i]);
74         offset = code & ((1 << ERRCODE_RANGE) - 1);
75
76         printf("%d (%s).%d = %s\n", (int)code, afs_error_table_name(code),
77                (int)offset, afs_error_message(code));
78     }
79     return 0;
80 }