MPE/iX Error Messages Manual Vol 3 (32650-90880)
168 Chapter4
Error Messages Viii C 3
Symbolic Debugger
PROCEDURE
CAUSE A large limit (NUM) exists on how many parameters can
be passed to a procedure called from the command line.
ACTION Check the number of parameters for the procedure you are
attemping to call. If the limit (NUM) is less than the
number of parameters in the procedure, that procedure
cannot be called from the command line.
UE392 MESSAGE ARGUMENT LIST TOO LONG
CAUSE Arguments to the run command exceeded 1024 bytes.
ACTION Re-enter the run command with fewer arguments.
UE393 MESSAGE CAN'T GOTO A LINE OUTSIDE OF THE CURRENT
PROCEDURE
CAUSE The line number given to the g (goto) command was not an
executable source line in the top procedure or paragraph
on the child process stack. This is not always the same as
the current viewing procedure.
ACTION Re-enter the g (goto) command with a line number within
the procedure or paragraph on the top of the child process
stack.
UE396 MESSAGE UNKNOWN NAME
CAUSE An unrecognized string (procedure or variable name) was
encountered in an expression.
ACTION Use the lp (list procedures), lg (list globals), l (list), lc (list
commons), or ll (list labels) command to list all known
procedures, globals, locals, commons, or labels.
UE398 MESSAGE MISFORMED HEX NUMBER
CAUSE 0x or 0X was given without digits following.
ACTION Re-enter the command with a valid hexadecimal number.
UE399 MESSAGE MISFORMED OCTAL NUMBER
CAUSE An octal number starting with 0 contains an 8 or 9.
ACTION Re-enter the command with the correct octal number.
UE400 MESSAGE CHARACTER CONSTANT IS MISSING ENDING
CAUSE Token parsed as a character constant is missing a trailing
single quotation mark ('). This applies to a single
quotation mark followed by a single character or
equivalent, backslash sequence.
ACTION Re-enter the command enclosing the character constant in
single quotation marks (').
UE401 MESSAGE STRING CONSTANT IS MISSING ENDING "