search for: next_run

Displaying 2 results from an estimated 2 matches for "next_run".

Did you mean: next_rip
2018 Feb 13
1
dovecot: master: Panic: kevent() failed: Invalid argument
...s triggered in io_loop_handler_run_internal().? The timeout values for the kevent() call are obtained by calling io_loop_get_wait_time(), which in turn calls timeout_get_wait_time() (both in ioloop.c). The timeout is computed by subtracting the value returned by gettimeofday() from timeout->next_run, and it looks like in very rare cases the result in tv_r->tv_usec is 1000000uS (1 second). So, it seems that if gettimeofday() returns exactly 0 microseconds, and timeout->next_run has exactly 1000000 microseconds, the kevent() call will fail (1 in 1e12 chance?). I'm not entirely sur...
2003 Aug 22
3
PAE removal patch for testing
...printf("SMAP type=%02x base=%08x %08x len=%08x %08x\n", + smap->type, + *(u_int32_t *)((char *)&smap->base + 4), + (u_int32_t)smap->base, + *(u_int32_t *)((char *)&smap->length + 4), + (u_int32_t)smap->length); if (smap->type != 0x01) goto next_run; @@ -1539,13 +1536,11 @@ if (smap->length == 0) goto next_run; -#ifndef PAE if (smap->base >= 0xffffffff) { printf("%uK of memory above 4GB ignored\n", (u_int)(smap->length / 1024)); goto next_run; } -#endif for (i = 0; i <= physmap_idx;...