Skip to content

Instantly share code, notes, and snippets.

@masu-mi
masu-mi / runtime-gdb.py.patch
Created October 5, 2015 22:28
patch for /usr/local/go/src/runtime/runtime-gdb.py in Issue(: https://github.comgolang/go/issues/9326 ).
--- ./runtime-gdb_before.py 2015-10-06 00:15:50.377028493 +0200
+++ ./runtime-gdb_after.py 2015-10-06 00:19:44.509043476 +0200
@@ -202,7 +202,7 @@ def lookup_type(name):
except gdb.error:
pass
-_rctp_type = gdb.lookup_type("struct runtime.rtype").pointer()
+#_rctp_type = gdb.lookup_type("struct runtime.rtype").pointer()
@masu-mi
masu-mi / Doxyfile
Last active December 24, 2015 05:39
I used Doxygen and Graphviz for reading lua-5.2.2 code. This Doxyfile is configure file of doxygen. ```sh $ pwd lua-5.2.2/src $ doxygen -g $vim Doxyfile $ doxygen $ (cd html && python -m SimpleHTTPServer) ```
# Doxyfile 1.8.4
# This file describes the settings to be used by the documentation system
# doxygen (www.doxygen.org) for a project.
#
# All text after a double hash (##) is considered a comment and is placed
# in front of the TAG it is preceding .
# All text after a hash (#) is considered a comment and will be ignored.
# The format is:
# TAG = value [value, ...]