Path: utzoo!utgpu!water!watmath!clyde!rutgers!cmcl2!brl-adm!brl-smoke!gwyn From: gwyn@brl-smoke.ARPA (Doug Gwyn ) Newsgroups: comp.unix.wizards Subject: Re: calling default signal routines Keywords: signal SIG_DFL Message-ID: <7143@brl-smoke.ARPA> Date: 19 Jan 88 16:23:26 GMT References: <239@stc-auts.UUCP> Reply-To: gwyn@brl.arpa (Doug Gwyn (VLD/VMB) ) Distribution: na Organization: Ballistic Research Lab (BRL), APG, MD. Lines: 11 In article <239@stc-auts.UUCP> kak@stc-auts.UUCP (Kris Kugel) writes: >I'd like to call the default signal handlers in my code's signal >handler after fixing up my terminal state. Is there anyway of >calling the default signal handlers? Is there a way of doing >what the default handlers do another way? I assume you mean you want to obtain the SIG_DFL actions after your handler has done its bit. Try signal( signal_number, SIG_DFL ); kill( getpid(), signal_number );