From b1d118d120b59d143bc2960aba1c724780c4b38c Mon Sep 17 00:00:00 2001 From: ThePedroo Date: Sun, 10 Nov 2024 23:17:59 -0300 Subject: [PATCH] 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. --- loader/src/include/daemon.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/loader/src/include/daemon.h b/loader/src/include/daemon.h index 3a58d5f..dfb04cc 100644 --- a/loader/src/include/daemon.h +++ b/loader/src/include/daemon.h @@ -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 {