diff options
author | 2020-01-13 15:08:08 +0000 | |
---|---|---|
committer | 2020-01-13 15:08:08 +0000 | |
commit | 03dc80a60c20db408723d3c807d2ffd6074c6522 (patch) | |
tree | 754c54b2d2dfaae37d2e321d1bd4ba0ef92e8f1a | |
parent | zap more unneeded indirection, may_continue_job is enough (diff) | |
download | wireguard-openbsd-03dc80a60c20db408723d3c807d2ffd6074c6522.tar.xz wireguard-openbsd-03dc80a60c20db408723d3c807d2ffd6074c6522.zip |
cleanup header
-rw-r--r-- | usr.bin/make/engine.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/usr.bin/make/engine.h b/usr.bin/make/engine.h index 495b8fbe7eb..f99029e9281 100644 --- a/usr.bin/make/engine.h +++ b/usr.bin/make/engine.h @@ -1,6 +1,6 @@ #ifndef ENGINE_H #define ENGINE_H -/* $OpenBSD: engine.h,v 1.15 2020/01/13 14:56:59 espie Exp $ */ +/* $OpenBSD: engine.h,v 1.16 2020/01/13 15:08:08 espie Exp $ */ /* * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. @@ -103,19 +103,19 @@ struct Job_ { struct Job_ *next; /* singly linked list */ pid_t pid; /* Current command process id */ Location *location; - int exit_type; /* last child exit or signal */ -#define JOB_EXIT_OKAY 0 -#define JOB_EXIT_BAD 1 -#define JOB_SIGNALED 2 int code; /* exit status or signal code */ + unsigned short exit_type; /* last child exit or signal */ +#define JOB_EXIT_OKAY 0 +#define JOB_EXIT_BAD 1 +#define JOB_SIGNALED 2 + unsigned short flags; +#define JOB_SILENT 0x001 /* Command was silent */ +#define JOB_IS_EXPENSIVE 0x002 +#define JOB_LOST 0x004 /* sent signal to non-existing pid ? */ +#define JOB_ERRCHECK 0x008 /* command wants errcheck */ LstNode next_cmd; /* Next command to run */ char *cmd; /* Last command run */ GNode *node; /* Target of this job */ - unsigned short flags; -#define JOB_SILENT 0x001 /* Command was silent */ -#define JOB_IS_EXPENSIVE 0x002 -#define JOB_LOST 0x004 /* sent signal to non-existing pid ? */ -#define JOB_ERRCHECK 0x008 /* command wants errcheck */ }; /* Continuation-style running commands for the parallel engine */ |