You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dg...@hyperreal.org on 1998/01/27 07:02:52 UTC

cvs commit: apachen/src .gdbinit

dgaudet     98/01/26 22:02:51

  Added:       src      .gdbinit
  Log:
  I needed a gdb macro to dump the contents of a table... I figured others
  might need it too.
  
  Revision  Changes    Path
  1.1                  apachen/src/.gdbinit
  
  Index: .gdbinit
  ===================================================================
  define dump_table
      set $t = (table_entry *)((array_header *)$arg0)->elts
      set $n = ((array_header *)$arg0)->nelts
      set $i = 0
      while $i < $n
  	printf "[%u] '%s'='%s'\n", $i, $t[$i].key, $t[$i].val
  	set $i = $i + 1
      end
  end
  document dump_table
      Print the key/value pairs in a table.
  end