summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2020-03-06 16:24:08 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2020-06-18 22:29:26 +0200
commit18f54f74862322d5a9360cbdc3541b6e3f15dce6 (patch)
tree240226785f9dd934bc85ce76fea9b96d6916eeef
parentCommon/Fiber: Implement Rewinding. (diff)
downloadyuzu-18f54f74862322d5a9360cbdc3541b6e3f15dce6.tar
yuzu-18f54f74862322d5a9360cbdc3541b6e3f15dce6.tar.gz
yuzu-18f54f74862322d5a9360cbdc3541b6e3f15dce6.tar.bz2
yuzu-18f54f74862322d5a9360cbdc3541b6e3f15dce6.tar.lz
yuzu-18f54f74862322d5a9360cbdc3541b6e3f15dce6.tar.xz
yuzu-18f54f74862322d5a9360cbdc3541b6e3f15dce6.tar.zst
yuzu-18f54f74862322d5a9360cbdc3541b6e3f15dce6.zip
-rw-r--r--src/common/fiber.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/fiber.h b/src/common/fiber.h
index a710df257..3bbd506b5 100644
--- a/src/common/fiber.h
+++ b/src/common/fiber.h
@@ -28,7 +28,10 @@ namespace Common {
* to implement such patterns. This fiber class is 'threadsafe' only one fiber
* can be running at a time and threads will be locked while trying to yield to
* a running fiber until it yields. WARNING exchanging two running fibers between
- * threads will cause a deadlock.
+ * threads will cause a deadlock. In order to prevent a deadlock, each thread should
+ * have an intermediary fiber, you switch to the intermediary fiber of the current
+ * thread and then from it switch to the expected fiber. This way you can exchange
+ * 2 fibers within 2 different threads.
*/
class Fiber {
public: