//
// CopyRight(c) 2009, YOYO, All Rights Reserved.
// Author: LIN YiQian
// Created: 2009/09/16
// Describe: 子线程杀死主线程 演示
//
#include <Windows.h>
#include <iostream>
using namespace std;
DWORD WINAPI ThreadFun(LPVOID lpParameter);
void main(void)
{
HANDLE hMainThread;
DuplicateHandle(GetCurrentProcess(), GetCurrentThread(), GetCurrentProcess(),
&hMainThread, 0, FALSE, DUPLICATE_SAME_ACCESS);
HANDLE hThread = CreateThread(NULL, 0, ThreadFun, &hMainThread, 0, NULL);
while (true)
{
printf("主线程运行中 - -..\n");
Sleep(1000);
}
CloseHandle(hThread);
return;
}
DWORD WINAPI ThreadFun(LPVOID lpParameter)
{
HANDLE hMainThread = *((HANDLE*)lpParameter);
//TerminateThread(hMainThread, 0);
while (true)
{
cout << hMainThread << endl;
printf("子线程运行中。。\n");
Sleep(5000);
}
}
上面是我网上找的一段代码。是子线程,杀死主线程的,
我想要的是子线程能,杀死程序自己,
我是写在库里面,然后库注入到xxx.exe,
希望能实现检测到某个程序,会由这个线程检测并杀死xxx.exe自己
以linux为例,线程中调用
pthread_exit()
只会终止掉线程自己。但是调用exit()/_exit()
就能终止掉整个进程。