- List the IDs of all existing breakpoint by entering the following command:
(idb) info breakpoints
The debugger displays all existing breakpoints.
- Identify the ID of the breakpoint you want to delete. If you have not set any other breakpoints since starting the debugger, there is only one breakpoint, and its ID is 1.
- Delete the breakpoint by entering the following command: (idb) delete breakpoint 1
You have deleted the breakpoint you set.
- Run the application again.
The application runs and displays Hello World! in a shell, and the program exits.