-
-
Save shihyu/7d13091a724d6ce47b6279a06ac68c21 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gdb | |
import string | |
class test_gdb_python_command(gdb.Command): | |
"test help" | |
def __init__(self): | |
super(test_gdb_python_command,self).__init__("test_gdb_python_command",gdb.COMMAND_USER) | |
def invoke(self,arg,from_tty): | |
print("gdb test") | |
test_gdb_python_command() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment