2
GetThreadContext是一個Windows API。如何在Linux/Unix中實現GetThreadContext?
BOOL WINAPI GetThreadContext(
_In_ HANDLE hThread,
_Inout_ LPCONTEXT lpContext
);
我不知道如何在linux中實現它。 如何檢索Linux中指定線程的註冊信息?
就像這樣:讓線程信息
pthread_create(thread_id, ...);
...
func(thread_id, reg_info)
{
//get the reg_info by thread_id.
??
}