Logical names question

norm.raphael_at_metso.com
Date: 09/29/03


Date: Mon, 29 Sep 2003 16:46:03 -0400


<I define a logical name, and an executive_mode logical name,
then delete one and the other stays (as I expected) but if
I delete the executive_mode one, they are both gone.>

$ defi/proc norm foo
$ defi/proc/exec norm foo

$ sho log norm*

(LNM$PROCESS_TABLE)

  "NORM" [super] = "FOO"
  "NORM" [exec] = "FOO"

$ deass/proc norm
$ sho log norm*

(LNM$PROCESS_TABLE)

  "NORM" = "FOO"

$ sho log norm*/full

(LNM$PROCESS_TABLE) [kernel]
                        [no protection information]

  "NORM" [exec] = "FOO"

<As expected>

$ defi/proc norm foo
$ sho log norm*

(LNM$PROCESS_TABLE)

  "NORM" [super] = "FOO"
  "NORM" [exec] = "FOO"

$ deass/proc/exec norm
$ sho log norm*

(LNM$PROCESS_TABLE)

(LNM$JOB_8118ED40)

(DECW$LOGICAL_NAMES)
%SHOW-S-NOTRAN, no translation for logical name NORM*
$

<DEASSIGN /EXEC seems to have deleted _both_ the
executive_mode and non-executive_mode logical names.
Is this expected/documented behavior?>