Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: I am seeking some Tk help

by converter (Priest)
on May 17, 2003 at 12:30 UTC ( [id://258858]=note: print w/replies, xml ) Need Help??


in reply to I am seeking some Tk help

You're calling exit in child processes, which is actually calling Tk::exit. Tk::exit takes your Tk application down gracefully, and that's what it's trying to do when you call it. Explicitly calling CORE::exit or POSIX::_exit instead of exit in child processes should fix the problem.

The only time those exit calls will be reached is when your exec calls fail. You should probably replace those exit calls with error handling code so you can find out what's failing and why.

Replies are listed 'Best First'.
Re: Re: I am seeking some Tk help
by itodd (Acolyte) on May 17, 2003 at 18:12 UTC

    Thanks converter!

    This indeed was the problem. I can't thank you enought :) ++!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (3)
As of 2024-04-20 05:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found