2009-11-10 18:20:32 +00:00
|
|
|
# Build a symbol table for static symbols of redis.c
|
|
|
|
# Useful to get stack traces on segfault without a debugger. See redis.c
|
|
|
|
# for more information.
|
|
|
|
#
|
2024-08-14 16:20:36 +00:00
|
|
|
# Copyright(C) 2009 Redis Ltd.
|
2009-11-10 18:20:32 +00:00
|
|
|
|
|
|
|
set fd [open redis.c]
|
|
|
|
set symlist {}
|
|
|
|
while {[gets $fd line] != -1} {
|
|
|
|
if {[regexp {^static +[A-z0-9]+[ *]+([A-z0-9]*)\(} $line - sym]} {
|
|
|
|
lappend symlist $sym
|
|
|
|
}
|
|
|
|
}
|
|
|
|
set symlist [lsort -unique $symlist]
|
2024-04-03 18:24:01 +00:00
|
|
|
puts "static struct serverFunctionSym symsTable\[\] = {"
|
2009-11-10 18:20:32 +00:00
|
|
|
foreach sym $symlist {
|
|
|
|
puts "{\"$sym\",(unsigned long)$sym},"
|
|
|
|
}
|
|
|
|
puts "{NULL,0}"
|
|
|
|
puts "};"
|
|
|
|
|
|
|
|
close $fd
|