aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checkstack.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/checkstack.py b/tools/checkstack.py
index 070bd25e..503fbf35 100755
--- a/tools/checkstack.py
+++ b/tools/checkstack.py
@@ -13,8 +13,8 @@ import sys
import re
# List of functions we can assume are never called.
-#IGNORE = ['BX_PANIC', '__dprintf', '__send_disk_op']
-IGNORE = ['BX_PANIC', '__send_disk_op']
+#IGNORE = ['panic', '__dprintf', '__send_disk_op']
+IGNORE = ['panic', '__send_disk_op']
# Find out maximum stack usage for a function
def calcmaxstack(funcs, funcaddr):