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.
??
}