History log of /openbsd-src/regress/sys/kern/kqueue/kqueue-process.c (Results 1 – 13 of 13)
Revision Date Author Comments
# 1e522b7e 03-Aug-2018 visa <visa@openbsd.org>

Improve synchronization between the parent and children. This fixes
a spurious test failure spotted by anton@ and eliminates sleeping
in the test.

Feedback and OK anton@


# bd35765d 20-Sep-2016 bluhm <bluhm@openbsd.org>

To make debugging the kqueue test easier, always print the assertion
failure before returning.


# d27560bf 04-Sep-2016 bluhm <bluhm@openbsd.org>

When passing the (1ULL << 32) to EV_SET, it gets casted to __uintptr_t.
On 32 bit architectues, the high bit is lost and the test fails.
Create an invalid pid in the lower 32 bits.
OK guenther@


# b261876b 14-Jul-2016 guenther <guenther@openbsd.org>

Prevent silly states via knotes on pids > 2^32 and on nonexistent signals.

ok tedu@


# 53408464 17-Mar-2016 krw <krw@openbsd.org>

Last parameter to execl[e]() functions *must* be cast to a pointer.
Just NULL is not good practise as NULL is theoretically allowed to
be an integer rather than a pointer.

Use (char *)NULL consisten

Last parameter to execl[e]() functions *must* be cast to a pointer.
Just NULL is not good practise as NULL is theoretically allowed to
be an integer rather than a pointer.

Use (char *)NULL consistently instead of scattering a few (char *)0
and (void *)NULL into the mix.

Prompted by and probably ok deraadt@ millert@ kettenis@

Definitely ok mestre@ ratchov@

show more ...


# a7c05c97 13-Aug-2015 uebayasi <uebayasi@openbsd.org>

NOTE_FORK|NOTE_TRACK knote can track grandchild processes. Wait for
both child/grandchild process events.


# b28359bb 02-Aug-2015 uebayasi <uebayasi@openbsd.org>

Kill a useless assignment.


# f3388f05 02-Aug-2015 uebayasi <uebayasi@openbsd.org>

Refactor to prepare a future change; no functional changes.


# 59d8cb9e 04-Aug-2010 guenther <guenther@openbsd.org>

Confirm that a NOTE_EXIT knote is delivered when the child exits
Fix a C thinko


# db3296cf 31-Jul-2003 deraadt <deraadt@openbsd.org>

various cleanups; david says results are same


# 544ebf79 12-Jun-2003 mickey <mickey@openbsd.org>

-Wall and calc fix in the random


# c20d9ad4 11-Jun-2002 jsyn <jsyn@openbsd.org>

kill err(3) newlines; ok miod@, deraadt@


# 57ee2582 02-Mar-2002 art <art@openbsd.org>

A start for testing EVFILT_PROC, not done yet, but this is a good check point.