summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2019-11-23 13:23:23 -0500
committerGravatar GitHub2019-11-23 13:23:23 -0500
commit6e4d46908af55e16afca1aa05aeab47e20ab49f5 (patch)
treece0f6fd75e88b90325ab2673964c2b07234bb3d0 /src
parentMerge pull request #3140 from FearlessTobi/port-4953 (diff)
parentKernel: Correct Cancel Synchronization. (diff)
downloadyuzu-6e4d46908af55e16afca1aa05aeab47e20ab49f5.tar.gz
yuzu-6e4d46908af55e16afca1aa05aeab47e20ab49f5.tar.xz
yuzu-6e4d46908af55e16afca1aa05aeab47e20ab49f5.zip
Merge pull request #3130 from FernandoS27/cancel-sync
Kernel: Correct Cancel Synchronization.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/svc.cpp5
-rw-r--r--src/core/hle/kernel/thread.cpp7
-rw-r--r--src/core/hle/kernel/thread.h9
3 files changed, 19 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index c63a9ba8b..b2cef3be9 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -505,6 +505,11 @@ static ResultCode WaitSynchronization(Core::System& system, Handle* index, VAddr
505 return RESULT_TIMEOUT; 505 return RESULT_TIMEOUT;
506 } 506 }
507 507
508 if (thread->IsSyncCancelled()) {
509 thread->SetSyncCancelled(false);
510 return ERR_SYNCHRONIZATION_CANCELED;
511 }
512
508 for (auto& object : objects) { 513 for (auto& object : objects) {
509 object->AddWaitingThread(thread); 514 object->AddWaitingThread(thread);
510 } 515 }
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index ee7531f2d..ab0e82ac2 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -120,8 +120,11 @@ void Thread::ResumeFromWait() {
120} 120}
121 121
122void Thread::CancelWait() { 122void Thread::CancelWait() {
123 ASSERT(GetStatus() == ThreadStatus::WaitSynch); 123 if (GetSchedulingStatus() != ThreadSchedStatus::Paused) {
124 ClearWaitObjects(); 124 is_sync_cancelled = true;
125 return;
126 }
127 is_sync_cancelled = false;
125 SetWaitSynchronizationResult(ERR_SYNCHRONIZATION_CANCELED); 128 SetWaitSynchronizationResult(ERR_SYNCHRONIZATION_CANCELED);
126 ResumeFromWait(); 129 ResumeFromWait();
127} 130}
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index c9870873d..25a6ed234 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -440,6 +440,14 @@ public:
440 is_running = value; 440 is_running = value;
441 } 441 }
442 442
443 bool IsSyncCancelled() const {
444 return is_sync_cancelled;
445 }
446
447 void SetSyncCancelled(bool value) {
448 is_sync_cancelled = value;
449 }
450
443private: 451private:
444 explicit Thread(KernelCore& kernel); 452 explicit Thread(KernelCore& kernel);
445 ~Thread() override; 453 ~Thread() override;
@@ -524,6 +532,7 @@ private:
524 532
525 u32 scheduling_state = 0; 533 u32 scheduling_state = 0;
526 bool is_running = false; 534 bool is_running = false;
535 bool is_sync_cancelled = false;
527 536
528 std::string name; 537 std::string name;
529}; 538};