this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Create a dummy function and rootless.h

+11
+6
src/sandbox/include/sandbox/rootless.h
··· 1 + #ifndef __SANDBOX_ROOTLESS_H__ 2 + #define __SANDBOX_ROOTLESS_H__ 3 + 4 + int rootless_allows_task_for_pid(pid_t pid); 5 + 6 + #endif
+5
src/sandbox/sandbox.c
··· 2 2 #include <stddef.h> 3 3 #include <string.h> 4 4 5 + #include <sys/types.h> 6 + 5 7 // DUMMY implementation 6 8 const enum sandbox_filter_type SANDBOX_CHECK_NO_REPORT = SANDBOX_FILTER_NONE; 7 9 ··· 114 116 return NULL; 115 117 } 116 118 119 + int rootless_allows_task_for_pid(pid_t pid) { 120 + return 1; 121 + }