in reply to fork, tk, win32
The easiest solution to this problem is to move your Tk stuff to after the code for the child in your program. That is after the if. That should prevent Tk needing to call the destruction routines in the child.
Update: To be more specific, the problem is caused by a Widget (MainWindow) being in exsitence for the child when it exits. A look at the tk source code indicates that the use Tk does not appear to be a problem.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: fork, tk, win32
by Eradicatore (Monk) on Jun 03, 2001 at 19:08 UTC | |
by wog (Curate) on Jun 03, 2001 at 19:38 UTC |