From 8fab7eebcec19e31f8ce41bf554a6d56f5839ab7 Mon Sep 17 00:00:00 2001 From: "SND\\kernelnet_cp" Date: Sat, 6 Dec 2014 13:56:21 +0000 Subject: [PATCH] [0.3.x] fixed : issue #13347 ( can not enumerate threads ) git-svn-id: https://pykd.svn.codeplex.com/svn@89402 9b283d60-5439-405e-af05-b73fd8c4d996 --- pykd/pymod.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pykd/pymod.cpp b/pykd/pymod.cpp index d740800..04a9dbd 100644 --- a/pykd/pymod.cpp +++ b/pykd/pymod.cpp @@ -410,8 +410,8 @@ BOOST_PYTHON_MODULE( pykd ) "Return the location in the target's memory of the thread structure ( TEB )" ) ); python::def( "getThreadSystemID", pykd::getThreadSystemId, getThreadSystemId_( python::args("Id"), "Return system thread ID ( TID )" ) ); - python::def( "getThreadId", pykd::getThreadIdByOffset, - "Return thread ID by the location in the target's memory of the thread structure" ); + python::def( "getThreadIdByOffset", pykd::getThreadIdByOffset, + "Return thread ID by the location in the targ et's memory of the thread structure" ); python::def( "getThreadIdBySystemID", pykd::getThreadIdBySystemId, getThreadIdBySystemId_( python::args("Tid"), "Return thread ID by the system's thread ID ( TID )" ) ); python::def( "getCurrentThread", pykd::getCurrentThread,