Changeset 661
- Timestamp:
- Mar 17, 2004, 7:29:31 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/ccl/lisp-kernel/lisp-debug.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/lisp-kernel/lisp-debug.c
r619 r661 19 19 #include "lisp_globals.h" 20 20 #include "area.h" 21 #include "Threads.h" 21 22 #include <ctype.h> 22 23 #include <stdio.h> … … 630 631 va_list args; 631 632 633 if (threads_initialized) { 634 suspend_other_threads(); 635 } 636 632 637 va_start(args,message); 633 638 debug_command_return state = debug_continue; … … 651 656 switch (state) { 652 657 case debug_exit_success: 653 resume_other_threads(); 658 if (threads_initialized) { 659 resume_other_threads(); 660 } 654 661 return 0; 655 662 case debug_exit_fail: 656 resume_other_threads(); 663 if (threads_initialized) { 664 resume_other_threads(); 665 } 657 666 return -1; 658 667 case debug_kill:
Note:
See TracChangeset
for help on using the changeset viewer.
