File: exit.h

package info (click to toggle)
xfsdump 3.1.9%2B0
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 3,932 kB
  • sloc: ansic: 45,863; sh: 3,227; makefile: 545
file content (40 lines) | stat: -rw-r--r-- 1,308 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * Copyright (c) 2000-2001 Silicon Graphics, Inc.
 * All Rights Reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it would be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write the Free Software Foundation,
 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
#ifndef EXIT_H
#define EXIT_H

/* exit codes for main and child processes
 */
#define EXIT_NORMAL	0	/* normal completion / don't exit */
#define EXIT_ERROR	1	/* resource error or resource exhaustion */
#define EXIT_INTERRUPT	2	/* interrupted (operator or device error) */
#define EXIT_FAULT	4	/* code fault */

static inline const char *
exit_codestring(int code)
{
	switch (code) {
	case EXIT_NORMAL:    return "SUCCESS";
	case EXIT_ERROR:     return "ERROR";
	case EXIT_INTERRUPT: return "INTERRUPT";
	case EXIT_FAULT:     return "FAULT";
	}
	return "UNKNOWN";
}

#endif /* EXIT_H */