From 41f912229e43e5436dd9040809afe33d228b0a95 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 9 Nov 2008 15:22:35 -0800 Subject: [PATCH] Terminate the backtrace that debug_backtrace() would output. From Godmar, crossported from his usb-integration-aug08 branch. --- src/threads/start.S | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/threads/start.S b/src/threads/start.S index 5a495c4..68c604c 100644 --- a/src/threads/start.S +++ b/src/threads/start.S @@ -8,6 +8,9 @@ .globl start .func start + # Terminate the backtrace that debug_backtrace() would output. + movl $0, %ebp + # Call main. start: call main -- 2.30.2