Title: | DECWINDOWS 26-JAN-89 to 29-NOV-90 |
Notice: | See 1639.0 for VMS V5.3 kit; 2043.0 for 5.4 IFT kit |
Moderator: | STAR::VATNE |
Created: | Mon Oct 30 1989 |
Last Modified: | Mon Dec 31 1990 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 3726 |
Total number of notes: | 19516 |
I'm running RISC ULTRIX with DECwindows on a pmax, and I'm having the following problem: An application does a fork, and the child does an execl. If I try quitting out of the main application while the child process is still around, the windows created by the main application are not cleaned up (they stay on the display until the child process is killed). At this point the main application process no longer exists, but I can iconize the main window (and blow it back up). Is there a way of getting around this problem (having the application's windows hang around even after the application process has been removed?) Is this a session manager bug?
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
1762.1 | FLUME::dike | Fri Nov 17 1989 16:09 | 4 | ||
Set the close-on-exec bit on the file descriptor. The problem is that when the main application goes away, the server still sees someone at the other end of the connection because the child has inherited the X file descriptor. Jeff |