File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -265,6 +265,16 @@ Clone **[this repo](https://github.com/oleavr/frida-agent-example)** to get star
265
265
266
266
Returns an observer object that you can call ` detach() ` on.
267
267
268
+ + ` Process.runOnThread(id, callback) ` : runs the JavaScript function ` callback `
269
+ without any arguments, on the thread specified by ` id ` . Returns a * Promise*
270
+ that receives the value returned by your callback.
271
+
272
+ Must be used with extreme caution due to the thread potentially being
273
+ interrupted in non-reentrant code. For example, you could be interrupting it
274
+ while it's in the middle of some delicate code, holding a specific
275
+ non-recursive lock, which you then try to implicitly acquire again when you
276
+ call some function.
277
+
268
278
+ ` Process.findModuleByAddress(address) ` ,
269
279
` Process.getModuleByAddress(address) ` ,
270
280
` Process.findModuleByName(name) ` ,
You can’t perform that action at this time.
0 commit comments