freeswitch/support-d/.gdbinit

62 lines
1.4 KiB
Plaintext
Raw Normal View History

# FreeSWITCH Custom GDB commands
define list_sessions
dont-repeat
printf "Listing sessions: \n"
set $i = 0
set $x=session_manager.session_table->table->first
while($x != 0x0)
printf "uuid %s is at %p\n", $x->pKey, $x->data
set $x = $x->next
set $i = $i + 1
end
printf "Found %d sessions.\n", $i
end
document list_sessions
Print a list of session uuid and pointers
end
define hash_it_str
dont-repeat
set $i = 0
set $x=$arg0->table->first
while($x != 0x0)
printf "key: %s valueptr: %p\n", $x->pKey, $x->data
set $x = $x->next
set $i = $i + 1
end
end
document hash_it_str
Usage: hash_it_str [hashtable]
Prints the content of a hashtable displaying the key as a string and the value as pointer
end
define hash_it_str_x
dont-repeat
set $i = 0
set $x=$arg0->table->first
while($x != 0x0)
printf "key: %s\n", $x->pKey
print (($arg1*)$x->data)->$arg2
printf "\n\n"
set $x = $x->next
set $i = $i + 1
end
end
document hash_it_str_x
Usage: hash_it_str_x [hashtable] [value_type] [member]
Prints the content of a hashtable displaying the key as a string and a specific member of the value struct. Args: hashtable value_type member
end
define event_dump
dont-repeat
set $x = $arg0->headers
while($x != 0x0)
printf "%s = %s\n", $x->name, $x->value
set $x = $x->next
end
end
document event_dump
Usage: event_dump [switch_event_t*]
Print and event's headers and values
end