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 );