mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
a very hard time to fully understand) with much more intuitive rights: CAP_EVENT - when set on descriptor, the descriptor can be monitored with syscalls like select(2), poll(2), kevent(2). CAP_KQUEUE_EVENT - When set on a kqueue descriptor, the kevent(2) syscall can be called on this kqueue to with the eventlist argument set to non-NULL value; in other words the given kqueue descriptor can be used to monitor other descriptors. CAP_KQUEUE_CHANGE - When set on a kqueue descriptor, the kevent(2) syscall can be called on this kqueue to with the changelist argument set to non-NULL value; in other words it allows to modify events monitored with the given kqueue descriptor. Add alias CAP_KQUEUE, which allows for both CAP_KQUEUE_EVENT and CAP_KQUEUE_CHANGE. Add backward compatibility define CAP_POLL_EVENT which is equal to CAP_EVENT. Sponsored by: The FreeBSD Foundation MFC after: 3 days |
||
|---|---|---|
| .. | ||
| Makefile | ||
| procstat.1 | ||
| procstat.c | ||
| procstat.h | ||
| procstat_args.c | ||
| procstat_auxv.c | ||
| procstat_basic.c | ||
| procstat_bin.c | ||
| procstat_cred.c | ||
| procstat_files.c | ||
| procstat_kstack.c | ||
| procstat_rlimit.c | ||
| procstat_sigs.c | ||
| procstat_threads.c | ||
| procstat_vm.c | ||