From 37f46bc09792f04f5691f15f84c928241caf4ec5 Mon Sep 17 00:00:00 2001 From: "SND\\kernelnet_cp" Date: Mon, 27 Dec 2010 07:32:04 +0000 Subject: [PATCH] [!] changed : debugger routines name made shorter ( step, trace, bp ) git-svn-id: https://pykd.svn.codeplex.com/svn@59200 9b283d60-5439-405e-af05-b73fd8c4d996 --- pykd/dbgext.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pykd/dbgext.cpp b/pykd/dbgext.cpp index 00e789a..9dd4271 100644 --- a/pykd/dbgext.cpp +++ b/pykd/dbgext.cpp @@ -86,8 +86,8 @@ BOOST_PYTHON_FUNCTION_OVERLOADS( compareMemoryOver, compareMemory, 3, 4 ) BOOST_PYTHON_MODULE( pykd ) { boost::python::def( "go", &setExecutionStatus ); - boost::python::def( "stepin", &setExecutionStatus ); - boost::python::def( "stepover", &setExecutionStatus ); + boost::python::def( "trace", &setExecutionStatus ); + boost::python::def( "step", &setExecutionStatus ); boost::python::def( "createSession", &dbgCreateSession ); boost::python::def( "isSessionStart", &dbgIsSessionStart ); boost::python::def( "symbolsPath", &dbgSymPath ); @@ -153,8 +153,8 @@ BOOST_PYTHON_MODULE( pykd ) .def("name", &dbgModuleClass::getName ) .def("contain", &dbgModuleClass::contain ); boost::python::class_( - "dbgExtensionClass", - "dbgExtensionClass", + "ext", + "windbg extension", boost::python::init( boost::python::args("path"), "__init__ dbgExtensionClass" ) ) .def("call", &dbgExtensionClass::call ); boost::python::class_( "dbgStackFrameClass", "dbgStackFrameClass" ) @@ -168,8 +168,8 @@ BOOST_PYTHON_MODULE( pykd ) boost::python::class_( "windbgIn", "windbgIn" ) .def( "readline", &dbgIn::readline ); boost::python::class_( - "dbgBreakpointClass", - "dbgBreakpointClass", + "bp", + "break point", boost::python::init( boost::python::args("offset"), "__init__ dbgBreakpointClass" ) ) .def( "set", &dbgBreakpointClass::set ) .def( "remove", &dbgBreakpointClass::remove );