You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched for a similar issue in this repository and did not find one.
Description
it's hard to me explain in english, i want something like this:
functions from loaded libraries executes silent, what if we log some of it before call? Something like this:
int PS4_SYSV_ABI sceNpMutexInit(ScePthreadMutex* mutex, constchar* name, bool b) {
LOG_DEBUG(Lib_NpCommon, "calling native version {} {}", name, b);
typedef PS4_SYSV_ABI int(*sceNpMutexInit_t)(ScePthreadMutex*, constchar*, bool);
auto func = (sceNpMutexInit_t)getLleExport("libSceNpCommon", "uEwag-0YZPc");
int rc = 0;
if (func) {
rc = func(mutex, name, b);
}
return rc;
}
instead native imported function sceNpMutexInit we use such stub to see what happens
Reason
ease debuging
Examples
No response
The text was updated successfully, but these errors were encountered:
Checklist
Description
it's hard to me explain in english, i want something like this:
functions from loaded libraries executes silent, what if we log some of it before call? Something like this:
instead native imported function
sceNpMutexInit
we use such stub to see what happensReason
ease debuging
Examples
No response
The text was updated successfully, but these errors were encountered: