You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
fix: missing pid and running in zygote_info structure
This commit fixes the issue where the commit that added "pid" (pid_t) and "running" (bool) members to the "zygote_info" structure, a structure that stores the response given by Zygiskd about its state, wasn't added, leading to failing buildings.
This commit is contained in:
@@ -57,6 +57,8 @@ enum zygote_root_impl {
|
|||||||
struct zygote_info {
|
struct zygote_info {
|
||||||
struct zygote_modules *modules;
|
struct zygote_modules *modules;
|
||||||
enum zygote_root_impl root_impl;
|
enum zygote_root_impl root_impl;
|
||||||
|
pid_t pid;
|
||||||
|
bool running;
|
||||||
};
|
};
|
||||||
|
|
||||||
namespace zygiskd {
|
namespace zygiskd {
|
||||||
|
|||||||
Reference in New Issue
Block a user