Changeset 5667dca in mainline
- Timestamp:
- 2019-10-02T12:36:33Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0a201454
- Parents:
- 9dcf472
- git-author:
- Jiri Svoboda <jiri@…> (2019-10-01 18:38:27)
- git-committer:
- Jiri Svoboda <jiri@…> (2019-10-02 12:36:33)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/udebug/udebug.c
r9dcf472 r5667dca 479 479 mutex_unlock(&THREAD->udebug.lock); 480 480 481 /* Make sure the debugging session is over before proceeding. */ 482 mutex_lock(&THREAD->udebug.lock); 483 while (THREAD->udebug.active) 484 condvar_wait(&THREAD->udebug.active_cv, &THREAD->udebug.lock); 485 mutex_unlock(&THREAD->udebug.lock); 486 481 /* 482 * This is where we will typically block until a post-mortem debugger 483 * terminates the debugging session. 484 */ 487 485 udebug_stoppable_end(); 488 486 }
Note:
See TracChangeset
for help on using the changeset viewer.