Closed CaledoniaProject closed 3 years ago
What is equivalent to TlsSetValue() in Frida?
TlsSetValue()
Since this pointer in onEnter/onLeave will not work across Interceptor hooks, what do you suggest?
this
Use a Map<number, T> mapping this.threadId (onEnter/onLeave) / Process.getCurrentThreadId() (other places) to any associated data.
Map<number, T>
this.threadId
Process.getCurrentThreadId()
What is equivalent to
TlsSetValue()
in Frida?Since
this
pointer in onEnter/onLeave will not work across Interceptor hooks, what do you suggest?