Skip Navigation Links | |
Exit Print View | |
![]() |
Oracle Solaris Studio 12.3: Debugging a Program With dbx Oracle Solaris Studio 12.3 Information Library |
4. Viewing and Navigating To Code
5. Controlling Program Execution
6. Setting Breakpoints and Traces
8. Evaluating and Displaying Data
11. Debugging Multithreaded Applications
16. Debugging Fortran Using dbx
17. Debugging a Java Application With dbx
18. Debugging at the Machine-Instruction Level
19. Using dbx With the Korn Shell
20. Debugging Shared Libraries
The run command runs the program with arguments.
Use Control-C to stop executing the program.
Begin executing the program with the current arguments.
Begin executing the program with new arguments.
Set the output redirection.
Set the input redirection.
where:
arguments are the arguments to be used in running the target process.
input_file is the file name of the file from which input is to be redirected.
output_file is the file name of the file to which output is to be redirected.
Note - There is currently no way to redirect stderr using the run or runargs command.
Begin executing the program with the current arguments.
Begin executing the program with new arguments.
where:
arguments are the arguments to be used in running the target process. They are passed to the Java application, not to the JVM software. Do not include the main class name as an argument.
You cannot redirect the input or output of a Java application with the run command.
Breakpoints you set in one run persist in subsequent runs.