Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^2: Get the current function used to handle control+z

by friedo (Prior)
on Dec 14, 2008 at 07:46 UTC ( [id://730260]=note: print w/replies, xml ) Need Help??


in reply to Re: Get the current function used to handle control+z
in thread Get the current function used to handle control+z

It's a little clunky, but you can do the kill from within perl by counting SIGSTOP's position in $Config{sig_name} (which, unfortunately, is a space-separated list rather than an array.)

perl -MConfig -le 'for( split /\s/, $Config{sig_name} ) { last if /^STOP$/; $n++ } kill $n, $$'
This just counts signal names until it gets to STOP, and $n will contain the right number.

Replies are listed 'Best First'.
Re^3: Get the current function used to handle control+z
by zwon (Abbot) on Dec 14, 2008 at 11:13 UTC
    There's no need to search signal number in $Config
    kill STOP => $$;
    will work just fine.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://730260]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-03-29 05:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found