Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/5/84; site neurad.UUCP Path: utzoo!watmath!clyde!burl!ulysses!allegra!mit-eddie!godot!harvard!seismo!umcp-cs!nbs-amrf!neurad!yee@ucbvax.ARPA From: yee@ucbvax.ARPA Newsgroups: net.sources.bugs Subject: Missing _sigmask in Battlestar Message-ID: <140@neurad.UUCP> Date: Sun, 3-Feb-85 23:32:41 EST Article-I.D.: neurad.140 Posted: Sun Feb 3 23:32:41 1985 Date-Received: Tue, 5-Feb-85 03:58:53 EST Sender: news@neurad.UUCP Organization: National Institutes of Health, Bethesda, MD Lines: 16 Several people have let me know that sigmask is not defined in Battlestar. The problem is that sigmask is a macro which is found in version 6.2 of signal.h, and not in previous versions. Following this is the definition of sigmask. Just add it to the files which reference sigmask, and the problems should be cleared up. -Peter Yee ..ucbvax!yee yee@Berkeley.ARPA /* * Macro for converting signal number to a mask suitable for * sigblock(). */ #define sigmask(m) (1 << ((m)-1))