index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
sys
/
kern
/
kern_sensors.c
Age
Commit message (
Expand
)
Author
2015-03-14
Remove some includes include-what-you-use claims don't
Jonathan Gray
2015-02-09
we want to defer work traditionally (in openbsd) handled in an
David Gwynne
2015-01-27
remove the second void * argument on tasks.
David Gwynne
2014-11-14
prefer sizeof(*ptr) to sizeof(struct) for malloc and free
Ted Unangst
2014-11-08
some systems install sensors where numbering introduces a gap which
Jasper Lievisse Adriaanse
2014-11-04
panic when a sensordev gets installed twice, instead of blowing up amazingly
Jasper Lievisse Adriaanse
2014-11-01
add a few sizes to free
Ted Unangst
2014-09-14
remove uneeded proc.h includes
Jonathan Gray
2014-07-12
add a size argument to free. will be used soon, but for now default to 0.
Ted Unangst
2013-12-09
use a separate task queue for sensors;
Mike Belopuhov
2013-11-04
move kernel sensor tasks from using workqs to tasks. while here
David Gwynne
2013-03-28
sys/param.h gets you sys/types.h automatically
Theo de Raadt
2010-04-20
Get rid of MAXSENSORDEVICES. Gaps in sensordev lists are now handled
Theo de Raadt
2009-08-03
timeout_add -> timeout_add_msec
Bret Lambert
2008-09-10
Convert timeout_add() calls using multiples of hz to timeout_add_sec()
Bret Lambert
2007-07-03
fix a memory leak that was introduced in r1.20 on 2007-06-24T05Z; ok dlg
Constantine A. Murenin
2007-06-24
rework sensor tasks to use the kernels generic workq rather than a special
David Gwynne
2007-06-04
perhaps it made art's head hurt because it is wrong. triggers NULL
Theo de Raadt
2007-06-01
rework the sensor task handling to run in the kernels generic workq.
David Gwynne
2007-03-22
split userland & kernel struct sensor/sensordev so that the addition
Theo de Raadt
2006-12-23
kernel code implimemting the new two-level sensor api; written by
Theo de Raadt
2006-11-06
force a new sensor task to be run as soon as possible. previously it used
David Gwynne
2006-05-28
Remove device id from hotplug events.
Michael Knudsen
2006-05-28
intrducing device type DV_SENSOR turned out to be a bad idea as it
Henning Brauer
2006-05-28
need <sys/device.h> or it doesn't compile on sparc64
Jason Wright
2006-05-28
Include device id in hotplug events. This will be used by ntpd to check
Michael Knudsen
2006-05-28
unbreak, of course this needs to included sys/hotplug.h too
Henning Brauer
2006-05-27
Make sensor add/remove create hotplug events (after much prodding from hennin...
Michael Knudsen
2006-03-12
sensors_head is only used in kern_sensors.c, so its unnecessay to declare
David Gwynne
2006-01-28
get rid of the sensors globals. theyre were only used by sysctl for
David Gwynne
2006-01-19
Replace SENSOR_ADD() macro with a pair of functions
Alexander Yurchenko
2005-11-21
rename the sensor globals to names that are not obvious to avoid
David Gwynne
2005-11-13
shorten this a bit through better use of TAILQ macros.
David Gwynne
2005-11-10
the tasklist can be modified while the kthread is sleeping, so refetch
David Gwynne
2005-11-10
first go at a generic kthread for sensors to be run out of. its a bit
David Gwynne
2005-11-10
split the sensors stuff out into a source file of its own.
David Gwynne