···6464 if (__gettimeofday_with_mach(&tv, NULL, &tbr) < 0) {
6565 return KERN_FAILURE;
6666 } else if (tbr == 0) {
6767+#ifdef DARLING
6868+ // In the past, Apple had a fallback solution if the tbr is still 0. However,
6969+ // they removed this in their recent code. In the long run, it might be a good
7070+ // idea to figure out why tbr returns 0 for notifyd.
7171+7272+ // Apple's Comment: On an old kernel, likely chroot'ed. (remove next year)
7373+ tbr = mach_absolute_time();
7474+#else
6775 __builtin_trap();
7676+#endif
6877 }
6978 }
7079