ajwerner

Results 144 comments of ajwerner

Looking at this more, gobject is already doing atomic refcounting for us. I think rather than rust having its own refcounts, we should use `g_object_ref` and `g_object_unref` and have a...

I'm realizing I don't know enough to know what makes sense. I see now that `g_object_unref` is only exposed on when `#[cfg(not(any(target_os = "windows", target_os = "android", target_vendor = "apple",)))]`....

Thanks for the hint! Given that, it seems like we should use the gobject refcounts data types an instance of a gobject, and cloning in rust should increment the refcount...

> what do you mean by "library exited"? Do you mean when the library is unloaded? I suppose yes, though what I really mean is when the injected loader "agent"...

> Generally you can use `frida_script_load` / `frida_script_unload`. And while it's loaded you can call rpc-methods (WIP in rust). I think you're talking about something quite different from what I'm...

> What you're looking for is frida-core/lib/pipe -- we should expose this in the Rust bindings. Can you say more about how I'd use that if it were exposed? These...

One question I have is how best to test this in CI. Locally I changed the default value the stack size to enable the alternate stack switching and I observed...

> @ajwerner could you merge `master` in to fix the clippy error? Then I'll merge > > `+ feel free to add a note in the changelog Done.

I'll put up a PR for this, just wanted to file it first.