aboutsummaryrefslogtreecommitdiffstats
path: root/enums/exit_status.in
blob: e02b1bc298a420e560104c0e6d5369e575931994 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
exit_status: PSEUDO_EXIT; char * message = "exit status unknown"
# 0 indicates success. The others indicate where in the startup process
# something went wrong, for any point at which we'd exit.
general, "unspecified error"
fork_failed, "fork failed"
lock_path, "path allocation failure for lock file"
lock_held, "lock already held by another process"
lock_failed, "could not create/lock lockfile"
timeout, "child process timed out"
waitpid, "waitpid() for child process failed unexpectedly"
socket_create, "couldn't create socket"
socket_fd, "couldn't move socket to safe file descriptor"
socket_path, "path allocation failure for server socket"
socket_unlink, "couldn't unlink existing server socket"
socket_bind, "couldn't bind server socket"
socket_listen, "couldn't listen on server socket"