GetThreadContext 是一个 Windows API。
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.
??
}