diff options
| author | 2020-02-24 22:04:12 -0400 | |
|---|---|---|
| committer | 2020-06-27 11:35:06 -0400 | |
| commit | e31425df3877636c098ec7426ebd2067920715cb (patch) | |
| tree | 5c0fc518a4ebb8413c491b43a9fdd99450c7bd80 /src/common/thread.cpp | |
| parent | Merge pull request #3396 from FernandoS27/prometheus-1 (diff) | |
| download | yuzu-e31425df3877636c098ec7426ebd2067920715cb.tar.gz yuzu-e31425df3877636c098ec7426ebd2067920715cb.tar.xz yuzu-e31425df3877636c098ec7426ebd2067920715cb.zip | |
General: Recover Prometheus project from harddrive failure
This commit: Implements CPU Interrupts, Replaces Cycle Timing for Host
Timing, Reworks the Kernel's Scheduler, Introduce Idle State and
Suspended State, Recreates the bootmanager, Initializes Multicore
system.
Diffstat (limited to 'src/common/thread.cpp')
| -rw-r--r-- | src/common/thread.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/common/thread.cpp b/src/common/thread.cpp index 0cd2d10bf..c9684aed9 100644 --- a/src/common/thread.cpp +++ b/src/common/thread.cpp | |||
| @@ -70,6 +70,12 @@ void SetCurrentThreadName(const char* name) { | |||
| 70 | } | 70 | } |
| 71 | #endif | 71 | #endif |
| 72 | 72 | ||
| 73 | #if defined(_WIN32) | ||
| 74 | void SetCurrentThreadName(const char* name) { | ||
| 75 | // Do Nothing on MingW | ||
| 76 | } | ||
| 77 | #endif | ||
| 78 | |||
| 73 | #endif | 79 | #endif |
| 74 | 80 | ||
| 75 | } // namespace Common | 81 | } // namespace Common |