diff options
| author | 2020-02-22 22:32:21 -0500 | |
|---|---|---|
| committer | 2020-02-22 22:32:21 -0500 | |
| commit | 3ef5f2017dba35742b32500e95744512dd5ef630 (patch) | |
| tree | ca5359a2ae4e34608e5564e43bdefe4946e413c8 /src/core/core.h | |
| parent | Merge pull request #3444 from bunnei/linux-audio-fix (diff) | |
| parent | Scheduler: Inline global scheduler in Scheduler Lock. (diff) | |
| download | yuzu-3ef5f2017dba35742b32500e95744512dd5ef630.tar.gz yuzu-3ef5f2017dba35742b32500e95744512dd5ef630.tar.xz yuzu-3ef5f2017dba35742b32500e95744512dd5ef630.zip | |
Merge pull request #3416 from FernandoS27/schedule
Kernel: Refactors and Implement a TimeManager and SchedulerLocks
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h index e69d68fcf..8d862a8e6 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -360,6 +360,12 @@ public: | |||
| 360 | 360 | ||
| 361 | const CurrentBuildProcessID& GetCurrentProcessBuildID() const; | 361 | const CurrentBuildProcessID& GetCurrentProcessBuildID() const; |
| 362 | 362 | ||
| 363 | /// Register a host thread as an emulated CPU Core. | ||
| 364 | void RegisterCoreThread(std::size_t id); | ||
| 365 | |||
| 366 | /// Register a host thread as an auxiliary thread. | ||
| 367 | void RegisterHostThread(); | ||
| 368 | |||
| 363 | private: | 369 | private: |
| 364 | System(); | 370 | System(); |
| 365 | 371 | ||