Won't Fix
Details
Details
Assignee
Przemyslaw Wirkus
Przemyslaw WirkusReporter
Przemyslaw Wirkus
Przemyslaw WirkusComponents
Sprint
None
Fix versions
Priority
Checklist
Checklist
Sentry
Sentry
Created December 23, 2023 at 12:05 AM
Updated June 4, 2024 at 11:47 AM
Resolved June 4, 2024 at 11:47 AM
We may in some rare cases miss the short process run with
wperf
.We want to create process suspended and resume it with
Definition of done
Check if this approach is meaningful. And see below “semi-skimmed” solution for this:
Add
CREATE_SUSPENDED
flag toCreateProcess()
inSpawnProcess()
function inprocess_api.h
. See :CREATE_SUSPENDED 0x00000004
The primary thread of the new process is created in a suspended state, and does not run until the ResumeThread function is called.
Resume process with
ResumeThread()
function. See