]> Zhao Yanbai Git Server - minix.git/commit
Various timer improvements 40/3340/1
authorDavid van Moolenbroek <david@minix3.org>
Thu, 21 Jul 2016 15:31:27 +0000 (15:31 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Fri, 5 Aug 2016 11:12:44 +0000 (11:12 +0000)
commitcfd712b4245f67a5631cc14e950ce43b18455602
tree4b7561d205ba221ffc9fc8541bf2fd8586a26736
parentbf609e10121541e123a8be251042bb3d29429c59
Various timer improvements

Now that clock_t is an unsigned value, we can also allow the system
uptime to wrap.  Essentially, instead of using (a <= b) to see if time
a occurs no later than time b, we use (b - a <= CLOCK_MAX / 2).  The
latter value does not exist, so instead we add TMRDIFF_MAX for that
purpose.

We must therefore also avoid using values like 0 and LONG_MAX as
special values for absolute times.  This patch extends the libtimers
interface so that it no longer uses 0 to indicate "no timeout".
Similarly, TMR_NEVER is now used as special value only when
otherwise a relative time difference would be used.  A minix_timer
structure is now considered in use when it has a watchdog function set,
rather than when the absolute expiry time is not TMR_NEVER.  A few new
macros in <minix/timers.h> help with timer comparison and obtaining
properties from a minix_timer structure.

This patch also eliminates the union of timer arguments, instead using
the only union element that is only used (the integer).  This prevents
potential problems with e.g. live update.  The watchdog function
prototype is changed to pass in the argument value rather than a
pointer to the timer structure, since obtaining the argument value was
the only current use of the timer structure anyway.  The result is a
somewhat friendlier timers API.

The VFS select code required a few more invasive changes to restrict
the timer value to the new maximum, effectively matching the timer
code in PM.  As a side effect, select(2) has been changed to reject
invalid timeout values.  That required a change to the test set, which
relied on the previous, erroneous behavior.

Finally, while we're rewriting significant chunks of the timer code
anyway, also covert it to KNF and add a few more explanatory comments.

Change-Id: Id43165c3fbb140b32b90be2cca7f68dd646ea72e
27 files changed:
minix/drivers/hid/pckbd/pckbd.c
minix/drivers/storage/ahci/ahci.c
minix/drivers/storage/floppy/floppy.c
minix/drivers/tty/pty/tty.c
minix/drivers/tty/tty/arch/i386/console.c
minix/drivers/tty/tty/tty.c
minix/include/minix/timers.h
minix/kernel/arch/earm/pre_init.c
minix/kernel/arch/i386/arch_system.c
minix/kernel/arch/i386/pre_init.c
minix/kernel/clock.c
minix/kernel/main.c
minix/kernel/proto.h
minix/kernel/system/do_setalarm.c
minix/kernel/utility.c
minix/lib/libsys/sys_setalarm.c
minix/lib/libsys/timers.c
minix/lib/libtimers/timers.h [deleted file]
minix/lib/libtimers/tmrs_clr.c
minix/lib/libtimers/tmrs_exp.c
minix/lib/libtimers/tmrs_set.c
minix/net/lwip/lwip.c
minix/servers/pm/alarm.c
minix/servers/pm/const.h
minix/servers/vfs/proto.h
minix/servers/vfs/select.c
minix/tests/t40f.c