[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
This commit is contained in:
SND\kernelnet_cp 2014-12-06 13:56:21 +00:00 committed by Mikhail I. Izmestev
parent b89ffed9eb
commit 8fab7eebce

View File

@ -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,