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:
ThePedroo
2024-11-10 23:17:59 -03:00
parent 97af7fe2da
commit b1d118d120

View File

@@ -57,6 +57,8 @@ enum zygote_root_impl {
struct zygote_info {
struct zygote_modules *modules;
enum zygote_root_impl root_impl;
pid_t pid;
bool running;
};
namespace zygiskd {