this repo has no description
1
fork

Configure Feed

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

Implement EVFILT_PROC with darlingserver

+7
+4
src/kernel/emulation/linux/ext/for-libkqueue.c
··· 4 4 int _dserver_rpc_kqchan_mach_port_open_4libkqueue(uint32_t port_name, void* receive_buffer, uint64_t receive_buffer_size, uint64_t saved_filter_flags, int* out_socket) { 5 5 return dserver_rpc_kqchan_mach_port_open(port_name, receive_buffer, receive_buffer_size, saved_filter_flags, out_socket); 6 6 }; 7 + 8 + int _dserver_rpc_kqchan_proc_open_4libkqueue(int32_t pid, uint32_t flags, int* out_socket) { 9 + return dserver_rpc_kqchan_proc_open(pid, flags, out_socket); 10 + };
+3
src/kernel/emulation/linux/ext/for-libkqueue.h
··· 8 8 VISIBLE 9 9 int _dserver_rpc_kqchan_mach_port_open_4libkqueue(uint32_t port_name, void* receive_buffer, uint64_t receive_buffer_size, uint64_t saved_filter_flags, int* out_socket); 10 10 11 + VISIBLE 12 + int _dserver_rpc_kqchan_proc_open_4libkqueue(int32_t pid, uint32_t flags, int* out_socket); 13 + 11 14 #endif // _DARLING_EMULATION_FOR_LIBKQUEUE_H_