345f2b96e2
Rather than using err() if either of two failure conditions fires (which can produce spurious error messages), just use errx() if the one condition that really matters fires. In practice, this single test is enough to detect the failure mode we're looking for (kqueue being inherited across fork). Approved by: mentor (rwatson), re (Capsicum blanket) Sponsored by: Google Inc
14 lines
317 B
C
14 lines
317 B
C
/* $FreeBSD$ */
|
|
|
|
#define HAVE_ERR_H 1
|
|
#define HAVE_SYS_EVENT_H 1
|
|
#define HAVE_EV_DISPATCH 1
|
|
#define HAVE_EV_RECEIPT 1
|
|
#undef HAVE_NOTE_TRUNCATE
|
|
#define HAVE_EVFILT_TIMER 1
|
|
#define HAVE_EVFILT_USER 1
|
|
#define PROGRAM "libkqueue-test"
|
|
#define VERSION "0.1"
|
|
#define TARGET "freebsd"
|
|
#define CFLAGS "-g -O0 -Wall -Werror"
|