gdb的user-define command
生活随笔
收集整理的這篇文章主要介紹了
gdb的user-define command
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
搜索: user-defined
例子。
# save this file in ~/.gdb or some where easy to find. # then in ~/.gdbinit add the following line... # source ~/.gdb/osip_gdb_util # # help p_osip_list_size # help p_osip_listdefine p_osip_list_sizeset $list = ($arg0)set $list_size = 0set $node = $list->nodewhile ($node != 0)set $list_size++set $node = (__node_t *)$node->nextendprintf "List size: %d", $list_size end document p_osip_list_size p_osip_list_size <list>: Print size of osip list enddefine p_osip_listset $list = ($arg0)set $list_size = 0set $node = $list->nodewhile ($node != 0)set $list_size++print $node->elementset $node = (__node_t *)$node->nextend end document p_osip_list p_osip_list <list>: Prints the content of the list. To see the value, cast the information back to the original form. For example: *(osip_generic_param_t)$1 end
例子。
# save this file in ~/.gdb or some where easy to find. # then in ~/.gdbinit add the following line... # source ~/.gdb/osip_gdb_util # # help p_osip_list_size # help p_osip_listdefine p_osip_list_sizeset $list = ($arg0)set $list_size = 0set $node = $list->nodewhile ($node != 0)set $list_size++set $node = (__node_t *)$node->nextendprintf "List size: %d", $list_size end document p_osip_list_size p_osip_list_size <list>: Print size of osip list enddefine p_osip_listset $list = ($arg0)set $list_size = 0set $node = $list->nodewhile ($node != 0)set $list_size++print $node->elementset $node = (__node_t *)$node->nextend end document p_osip_list p_osip_list <list>: Prints the content of the list. To see the value, cast the information back to the original form. For example: *(osip_generic_param_t)$1 end
轉載于:https://www.cnblogs.com/shaohef/p/4534230.html
總結
以上是生活随笔為你收集整理的gdb的user-define command的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Windows Win7建立wifi热点
- 下一篇: Hadoop学习之Combiner