aboutsummaryrefslogtreecommitdiff
path: root/frontend/3ds/3ds_utils.h
diff options
context:
space:
mode:
authorJustin Weiss2020-02-21 21:17:31 -0800
committerJustin Weiss2020-02-25 22:58:22 -0800
commit679b71e250ce6557f05b57882747029ab6af7edc (patch)
tree4a7d690b6c3b3cf0d2e7ae8eb0be1dbd2a992990 /frontend/3ds/3ds_utils.h
parent58e485d6efcecfe0fb7d072d705cf658e6162b4e (diff)
downloadpcsx_rearmed-679b71e250ce6557f05b57882747029ab6af7edc.tar.gz
pcsx_rearmed-679b71e250ce6557f05b57882747029ab6af7edc.tar.bz2
pcsx_rearmed-679b71e250ce6557f05b57882747029ab6af7edc.zip
Add async CD access
Diffstat (limited to 'frontend/3ds/3ds_utils.h')
-rw-r--r--frontend/3ds/3ds_utils.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/frontend/3ds/3ds_utils.h b/frontend/3ds/3ds_utils.h
index cad4cbe..c9b9d7f 100644
--- a/frontend/3ds/3ds_utils.h
+++ b/frontend/3ds/3ds_utils.h
@@ -24,6 +24,20 @@ void threadFree(int32_t thread);
void threadExit(int32_t rc) __attribute__((noreturn));
int32_t svcGetSystemInfo(int64_t* out, uint32_t type, int32_t param);
+
+int32_t svcCreateSemaphore(uint32_t *sem, int32_t initial_count, uint32_t max_count);
+int32_t svcReleaseSemaphore(int32_t *count, uint32_t sem, int32_t release_count);
+int32_t svcWaitSynchronization(uint32_t handle, int64_t nanoseconds);
+
+typedef int32_t LightLock;
+
+void LightLock_Init(LightLock* lock);
+void LightLock_Lock(LightLock* lock);
+int LightLock_TryLock(LightLock* lock);
+void LightLock_Unlock(LightLock* lock);
+
+int32_t APT_CheckNew3DS(bool *out);
+
int32_t svcBackdoor(int32_t (*callback)(void));
#define DEBUG_HOLD() do{printf("%s@%s:%d.\n",__FUNCTION__, __FILE__, __LINE__);fflush(stdout);wait_for_input();}while(0)