diff options
| author | bunnei <bunneidev@gmail.com> | 2022-12-12 14:37:42 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-12 14:37:42 -0800 |
| commit | 339a37f8cb19dffbf64015b5d9a362a1ef5560c2 (patch) | |
| tree | 0742ac869b92b4ee7b2c49ef77547cdaeac5038d /src/core/cpu_manager.h | |
| parent | da58eb62080915dca061541ce515f222d06f9433 (diff) | |
| parent | 9704acb982eb3dfb4b2b6a090f5613d4ac57b196 (diff) | |
Merge pull request #9398 from liamwhite/fail
general: improve handling of system startup failure
Diffstat (limited to 'src/core/cpu_manager.h')
| -rw-r--r-- | src/core/cpu_manager.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/core/cpu_manager.h b/src/core/cpu_manager.h index 374367468..0deea9c58 100644 --- a/src/core/cpu_manager.h +++ b/src/core/cpu_manager.h @@ -81,12 +81,10 @@ private: void SingleCoreRunGuestThread(); void SingleCoreRunIdleThread(); - static void ThreadStart(std::stop_token stop_token, CpuManager& cpu_manager, std::size_t core); - void GuestActivate(); void HandleInterrupt(); void ShutdownThread(); - void RunThread(std::size_t core); + void RunThread(std::stop_token stop_token, std::size_t core); struct CoreData { std::shared_ptr<Common::Fiber> host_context; |
