mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-26 20:15:03 +00:00
clang format
This commit is contained in:
parent
ee247d3064
commit
7aaf31ea4a
@ -93,7 +93,6 @@ int PS4_SYSV_ABI posix_close(int d) {
|
|||||||
return sceKernelClose(d);
|
return sceKernelClose(d);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
size_t PS4_SYSV_ABI sceKernelWrite(int d, void* buf, size_t nbytes) {
|
size_t PS4_SYSV_ABI sceKernelWrite(int d, void* buf, size_t nbytes) {
|
||||||
if (buf == nullptr) {
|
if (buf == nullptr) {
|
||||||
return SCE_KERNEL_ERROR_EFAULT;
|
return SCE_KERNEL_ERROR_EFAULT;
|
||||||
|
@ -791,14 +791,16 @@ int PS4_SYSV_ABI posix_pthread_cond_init(ScePthreadCond* cond, const ScePthreadC
|
|||||||
int PS4_SYSV_ABI posix_pthread_cond_signal(ScePthreadCond* cond) {
|
int PS4_SYSV_ABI posix_pthread_cond_signal(ScePthreadCond* cond) {
|
||||||
int result = scePthreadCondSignal(cond);
|
int result = scePthreadCondSignal(cond);
|
||||||
LOG_INFO(Kernel_Pthread,
|
LOG_INFO(Kernel_Pthread,
|
||||||
"posix posix_pthread_cond_signal redirect to scePthreadCondSignal, result = {}", result);
|
"posix posix_pthread_cond_signal redirect to scePthreadCondSignal, result = {}",
|
||||||
|
result);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
int PS4_SYSV_ABI posix_pthread_cond_destroy(ScePthreadCond* cond) {
|
int PS4_SYSV_ABI posix_pthread_cond_destroy(ScePthreadCond* cond) {
|
||||||
int result = scePthreadCondDestroy(cond);
|
int result = scePthreadCondDestroy(cond);
|
||||||
LOG_INFO(Kernel_Pthread,
|
LOG_INFO(Kernel_Pthread,
|
||||||
"posix posix_pthread_cond_destroy redirect to scePthreadCondDestroy, result = {}", result);
|
"posix posix_pthread_cond_destroy redirect to scePthreadCondDestroy, result = {}",
|
||||||
|
result);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user