| 287 | int (*ar_unshare)(int) = nullptr; |
| 288 | |
| 289 | static int reshare(int flags) { |
| 290 | errno = 0; |
| 291 | return flags == CLONE_NEWNS ? 0 : ar_unshare(flags & ~CLONE_NEWNS); |
| 292 | } |
| 293 | |
| 294 | class NoHello : public zygisk::ModuleBase { |
| 295 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected