File: except.c

package info (click to toggle)
netqmail 1.06-6.2~deb9u1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 2,440 kB
  • sloc: ansic: 14,438; makefile: 1,865; sh: 511
file content (37 lines) | stat: -rw-r--r-- 771 bytes parent folder | download | duplicates (9)
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
#include "fork.h"
#include "strerr.h"
#include "wait.h"
#include "error.h"
#include "exit.h"

#define FATAL "except: fatal: "

void main(argc,argv)
int argc;
char **argv;
{
  int pid;
  int wstat;

  if (!argv[1])
    strerr_die1x(100,"except: usage: except program [ arg ... ]");

  pid = fork();
  if (pid == -1)
    strerr_die2sys(111,FATAL,"unable to fork: ");
  if (pid == 0) {
    execvp(argv[1],argv + 1);
    if (error_temp(errno)) _exit(111);
    _exit(100);
  }

  if (wait_pid(&wstat,pid) == -1)
    strerr_die2x(111,FATAL,"wait failed");
  if (wait_crashed(wstat))
    strerr_die2x(111,FATAL,"child crashed");
  switch(wait_exitcode(wstat)) {
    case 0: _exit(100);
    case 111: strerr_die2x(111,FATAL,"temporary child error");
    default: _exit(0);
  }
}