MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / open_thread

Method open_thread

Python-Bridge/Python-Bridge.py:354–357  ·  view source on GitHub ↗
(self, tid, access_mask, obj_attributes)

Source from the content-addressed store, hash-verified

352 return status, handle
353
354 def open_thread(self, tid, access_mask, obj_attributes):
355 handle = c_uint64()
356 status = self.__kb.KbOpenThread(c_uint64(tid), byref(handle), c_uint(access_mask), c_uint(obj_attributes))
357 return status, handle
358
359 def open_thread_by_ptr(self, pethread, access_mask, obj_attributes, processor_mode):
360 handle = c_uint64()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected