Select the types of activity you want to include in your feed.
Fix jumpy usec values for kern.boottime
This was causing issues with Homebrew due to Ruby using `_mach_boottime_usec` (indirectly), which repeatedly does `kern.boottime` sysctls until two results match.
···140140 sys_gettimeofday(tv, NULL);
141141142142 tv->tv_sec -= info.uptime;
143143+144144+ // we don't want the microseconds to be constantly jumping around
145145+ // (that actually causes an infinite loop in `_mach_boottime_usec` in libc)
146146+ // but Linux doesn't give us microseconds, so just settle for 0
147147+ tv->tv_usec = 0;
143148 }
144149 *oldlen = sizeof(*tv);
145150