summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-05-27 03:01:27 +0200
committerbunnei <ericbunnie@gmail.com>2014-05-27 03:01:27 +0200
commitd73d782ba7ea6f3f2dd9c4f70d34c1004397dacb (patch)
tree6eb4c55468938b7d2a95f029c15dd9f6be913748 /src/core/hle/kernel/thread.cpp
parentsvc: added stub for DuplicateHandle SVC call (diff)
downloadyuzu-d73d782ba7ea6f3f2dd9c4f70d34c1004397dacb.tar
yuzu-d73d782ba7ea6f3f2dd9c4f70d34c1004397dacb.tar.gz
yuzu-d73d782ba7ea6f3f2dd9c4f70d34c1004397dacb.tar.bz2
yuzu-d73d782ba7ea6f3f2dd9c4f70d34c1004397dacb.tar.lz
yuzu-d73d782ba7ea6f3f2dd9c4f70d34c1004397dacb.tar.xz
yuzu-d73d782ba7ea6f3f2dd9c4f70d34c1004397dacb.tar.zst
yuzu-d73d782ba7ea6f3f2dd9c4f70d34c1004397dacb.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/thread.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index bf4c8353c..b9dd9fac4 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -36,6 +36,11 @@ public:
inline bool IsWaiting() const { return (status & THREADSTATUS_WAIT) != 0; }
inline bool IsSuspended() const { return (status & THREADSTATUS_SUSPEND) != 0; }
+ /// Synchronize kernel object
+ Result SyncRequest() {
+ return 0;
+ }
+
ThreadContext context;
u32 status;