Skip to content

Commit e1ee439

Browse files
authored
Update entry-exit.rst
1 parent 206b2b5 commit e1ee439

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/entry-exit.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ Calling the debugger from your program
5656

5757
Sometimes it is not feasible to invoke the program from the debugger.
5858
Although the debugger tries to set things up to make it look like your
59-
program is called, sometimes the differences matter. Also the debugger
59+
program is called, sometimes the differences matter. Also, the debugger
6060
adds overhead and slows down your program.
6161

62-
Another possibility then is to add statements into your program to call
62+
Another possibility is adding statements into your program to call
6363
the debugger at the spot in the program you want. To do this, you source
6464
``bashdb/dbg-trace.sh`` from where wherever it appears on your filesystem.
6565
This needs to be done only once.
6666

67-
After that you call ``_Dbg_debugger``.
67+
After that, you call ``_Dbg_debugger``.
6868

6969
Here is an Example:
7070

@@ -78,9 +78,9 @@ Here is an Example:
7878
# start debugging here
7979
8080
81-
Since `_Dbg_debugger`` a function call, it can be nested inside some sort of
82-
conditional statement allowing one to be very precise about the
83-
conditions you want to debug under. And until first call to ``_Dbg_debugger``,
81+
Since `_Dbg_debugger``is a function call, it can be nested inside some
82+
conditional statement allowing one to be precise about the
83+
conditions you want to debug under. And until the first call to ``_Dbg_debugger``,
8484
there is no debugger overhead.
8585

86-
Note that ``_Dbg_debugger`` causes the statement *after* the call to be stopped at.
86+
Note that ``_Dbg_debugger`` causes the statement *after* the call to be stopped.

0 commit comments

Comments
 (0)