Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: $Revision: 1.6.2.16 $; site haddock.UUCP Path: utzoo!watmath!clyde!bonnie!akgua!mcnc!decvax!yale!haddock!dan From: dan@haddock.UUCP Newsgroups: net.unix Subject: Re: Re: 2.9BSD Termination codes Message-ID: <16700042@haddock.UUCP> Date: Sun, 26-May-85 18:35:00 EDT Article-I.D.: haddock.16700042 Posted: Sun May 26 18:35:00 1985 Date-Received: Thu, 30-May-85 03:44:19 EDT References: <10911@brl-tgr.UUCP> Lines: 13 Nf-ID: #R:brl-tgr:-1091100:haddock:16700042:000:600 Nf-From: haddock!dan May 26 18:35:00 1985 The make status codes are actually not hard to "read", though you won't necessarily be any the wiser when you're done. They are the actual values returned from wait(2). A "termination code" indicates the program was killed by a signal; see the description of the low-order byte returned by wait(2). "Termination code 138" means 128 (core dumped) plus 10 (killed by signal 10; see signal(2) to find out what it is). If make indicates an "Error code", then the program was not killed by a signal but terminated intentionally. The number is the exit() value supplied by the program. Dan Franklin