From 5c1676dfe6d2f3c837a5e074117b45613fd29a72 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:30:19 +0200 Subject: Adding upstream version 2.10.34. Signed-off-by: Daniel Baumann --- tools/gimp-debug-resume.c | 113 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 tools/gimp-debug-resume.c (limited to 'tools/gimp-debug-resume.c') diff --git a/tools/gimp-debug-resume.c b/tools/gimp-debug-resume.c new file mode 100644 index 0000000..2aac3b3 --- /dev/null +++ b/tools/gimp-debug-resume.c @@ -0,0 +1,113 @@ +/* based on pausep by Daniel Turini + */ + +#define WIN32_LEAN_AND_MEAN +#define _WIN32_WINNT 0x0502 +#include +#include +#include +#include +#include + +static BOOL +resume_process (DWORD dwOwnerPID) +{ + HANDLE hThreadSnap = NULL; + BOOL bRet = FALSE; + THREADENTRY32 te32 = { 0 }; + + hThreadSnap = CreateToolhelp32Snapshot (TH32CS_SNAPTHREAD, 0); + if (hThreadSnap == INVALID_HANDLE_VALUE) + return FALSE; + + te32.dwSize = sizeof (THREADENTRY32); + + if (Thread32First (hThreadSnap, &te32)) + { + do + { + if (te32.th32OwnerProcessID == dwOwnerPID) + { + HANDLE hThread = OpenThread (THREAD_SUSPEND_RESUME, FALSE, te32.th32ThreadID); + printf ("Resuming Thread: %u\n", (unsigned int) te32.th32ThreadID); + ResumeThread (hThread); + CloseHandle (hThread); + } + } + while (Thread32Next (hThreadSnap, &te32)); + bRet = TRUE; + } + else + bRet = FALSE; + + CloseHandle (hThreadSnap); + + return bRet; +} + +static BOOL +process_list (void) +{ + HANDLE hProcessSnap = NULL; + BOOL bRet = FALSE; + PROCESSENTRY32 pe32 = {0}; + + hProcessSnap = CreateToolhelp32Snapshot (TH32CS_SNAPPROCESS, 0); + + if (hProcessSnap == INVALID_HANDLE_VALUE) + return FALSE; + + pe32.dwSize = sizeof (PROCESSENTRY32); + + if (Process32First (hProcessSnap, &pe32)) + { + do + { + printf ("PID:\t%u\t%s\n", + (unsigned int) pe32.th32ProcessID, + pe32.szExeFile); + } + while (Process32Next (hProcessSnap, &pe32)); + bRet = TRUE; + } + else + bRet = FALSE; + + CloseHandle (hProcessSnap); + + return bRet; +} + +int +main (int argc, + char* argv[]) +{ + DWORD pid; + + if (argc <= 1) + { + process_list (); + } + else if (argc == 2) + { + pid = atoi (argv[1]); + if (pid == 0) + { + printf ("invalid: %lu\n", pid); + return 1; + } + else + { + printf ("process: %lu\n", pid); + resume_process (pid); + } + } + else + { + printf ("Usage:\n" + "resume : show processlist\n" + "resume PID: resuming thread\n"); + } + + return 0; +} -- cgit v1.2.3