[Return to Bookshelf] [Contents] [Previous Section] [Next Section] [Index] [Help]


cma_debug_cmd

Passes a list of cma_debug commands to DECthreads.

Syntax

cma_debug_cmd(
              cmd);
 


Argument Data Type Access

cmd character string read


C Binding

#include 

cma_t_dbg_status cma_debug_cmd ( char *cmd);

Arguments

cmd
cma_debug command string. Null terminated string, commands separated by semicolons.

Description

This routine passes a list of debugging commands to DECthreads. Each command is executed in sequence. Any output is written to standard output. This routine returns when the final command (or Exit command) is executed.

For a list of cma_debug commands, see Appendix D.

Following are two examples of calling this routine:

cma_debug_cmd ("thread -b; mu -lq; cond -wq");
cma_debug_cmd ("att");

If you want to invoke the debugger for interactive commands, call cma_debug.

Exceptions

None



[Return to Bookshelf] [Contents] [Previous Section] [Next Section] [Index] [Help]