Skip to content
Snippets Groups Projects
Commit cd7b140d authored by Robert Read's avatar Robert Read
Browse files

Break, instead of panic, in the UML version of portals_debug_dumpstack.

parent 8dc028eb
No related branches found
No related tags found
No related merge requests found
...@@ -953,7 +953,7 @@ extern int is_kernel_text_address(unsigned long addr); ...@@ -953,7 +953,7 @@ extern int is_kernel_text_address(unsigned long addr);
char *portals_debug_dumpstack(void) char *portals_debug_dumpstack(void)
{ {
panic("LBUG"); asm("int $3");
} }
#elif defined(__i386__) #elif defined(__i386__)
......
...@@ -953,7 +953,7 @@ extern int is_kernel_text_address(unsigned long addr); ...@@ -953,7 +953,7 @@ extern int is_kernel_text_address(unsigned long addr);
char *portals_debug_dumpstack(void) char *portals_debug_dumpstack(void)
{ {
panic("LBUG"); asm("int $3");
} }
#elif defined(__i386__) #elif defined(__i386__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment