T.R | Title | User | Personal Name | Date | Lines |
---|
1883.1 | Just CREATE/TERMINAL should do it | RWCVAX::COULSON | Roger Coulson - SASE(MSESU) DTN 223-6158 | Mon Dec 11 1989 09:46 | 11 |
| RE: CREATE/TERMINAL/NOPROCESS
The /NOPROCESS tells it to create a window but not a process. A
CREATE/TERMINAL command creates a subprocess logged in. A
CREATE/TERMINAL/DETACHED creates a new process logged in. A
CREATE/TERMINAL/DETACHED/NOLOGGED_IN creates a new process not logged
in and you get a username prompt. I think you want just
CREATE/TERMINAL.
/s/ Roger
|
1883.2 | Thanks, but it ain't that simple | ARTFUL::SCOTT | TPU, TP me, TP them, TP ... we? | Mon Dec 11 1989 10:34 | 4 |
| Thanks, but I've used CREATE/TERMINAL/NOPROCESS, which works fine, but when
I exit the debugger, the window goes away. I also used it to make a test ter-
minal for my application, and the thing happens--when my application deassigns
the channel for the device, the window goes away.
|
1883.3 | SET TERMINAL/NOHANGUP | HANNAH::MESSENGER | Bob Messenger | Mon Dec 11 1989 10:49 | 7 |
| Re: .0
I think you need to SET TERMINAL/NOHANGUP on the created TW devices; this
may require SHARE privilege. Unfortunately you can't specify this on the
CREATE/TERMINAL command line (CREATE/TERMINAL/NOPROCESS/NOHANGUP).
-- Bob
|
1883.4 | Thanks--that works only too well 8^) | ARTFUL::SCOTT | TPU, TP me, TP them, TP ... we? | Mon Dec 11 1989 12:39 | 6 |
|
Thank you--SET TERM/NOHANG/PERM works even better than I want it to--the created
windows survive the deletion of my process. It also required PHYS_IO or LOG_IO,
but that wasn't a problem in this situation. It'd be nice if there was a way
to do this which didn't need privileges and which would get rid of the window
at process termination (i.e., CREATE/TERM/NOPROCESS/NOHANG).
|
1883.5 | simple way (?)... | GSRC::WEST | Variables don't, Constants aren't | Tue Dec 12 1989 20:40 | 16 |
| RE: .0
Since you mentioned in your note you do this because you don't like the
DECwindows debugger windows then what you *really* want to do is this:
$ define dbg$decw$display " "
The space IS important between the quotes. This will have the effect of
turning OFF the DECwindows interface to the debugger so that any program
you run with the debugger will do what it has always done in the past on
any VT terminal.
Hope this helps...
-=> Jim <=-
|
1883.6 | Allocate it | PRNSYS::LOMICKAJ | Jeffrey A. Lomicka | Tue Jan 02 1990 11:45 | 7 |
| After doing $ CREATE/TERM/NOPROCESS/DEFINE=(whatever)
Do an $ ALLOCATE whatever
from another process. The terminal will then remain until the process
which has the terminal allocated is logged out.
|