aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/acpica/Osd/OsdSchedule.c
Commit message (Expand)AuthorAgeFilesLines
* sys: Remove $FreeBSD$: one-line .c patternWarner Losh2023-08-161-2/+0
* remove unneeded inclusion of sys/interrupt.h from several filesAndriy Gapon2018-07-041-1/+0
* Do not check whether AcpiOsGetTimer() is called during boot.Jung-uk Kim2017-10-101-3/+0
* Defer ACPI taskqueue creation to SI_SUB_KICK_SCHEDULER.Mark Johnston2017-07-051-1/+1
* Merge ACPICA 20160422.Jung-uk Kim2016-04-271-1/+2
* Add sysctl to track the resource consumption of ACPI interrupts.Will Andrews2014-10-011-0/+11
* Pull in r267961 and r267973 again. Fix for issues reported will follow.Hans Petter Selasky2014-06-281-2/+0
* Revert r267961, r267973:Glen Barber2014-06-271-0/+2
* Extend the meaning of the CTLFLAG_TUN flag to automatically check ifHans Petter Selasky2014-06-271-2/+0
* Remove duplicate SYSCTL_DECL(_debug_acpi) which was breaking tinderboxSteven Hartland2014-04-241-2/+0
* Exposed debug.acpi.max_tasks and debug.acpi.max_threads via sysctls so theirSteven Hartland2014-04-241-0/+6
* Fix two misusages of return_*() macros for ACPICA.Jung-uk Kim2013-01-281-1/+3
* Fix white spaces for style consistency.Jung-uk Kim2013-01-281-3/+3
* Merge ACPICA 20120518.Jung-uk Kim2012-05-241-0/+14
* Fix a long-standing bug for AcpiOsGetTimer(). time_t is 32-bit on i386 andJung-uk Kim2012-02-241-3/+3
* Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs.Ed Schouten2011-11-071-1/+1
* Prefer KASSERT(9) over panic(9) as it was never seen in reality.Jung-uk Kim2011-01-101-2/+1
* Merge ACPICA 20100121.Jung-uk Kim2010-01-211-1/+1
* - Remove unnecessary read memory barriers from atomic operations[1].Jung-uk Kim2009-06-111-2/+4
* Catch up with r193750 (OsdSynch.c locking changes):Jung-uk Kim2009-06-101-16/+92
* Import ACPICA 20090521.Jung-uk Kim2009-06-051-1/+3
* Remove " + 1".Alexander Motin2008-11-031-1/+1
* As soon as we have several threads per process now, it is not correct toAlexander Motin2008-11-021-5/+1
* Fix GPE livelock that occurs on HP/Compaq laptops, mostly in the thermalNate Lawson2008-01-121-3/+7
* Catch up with ACPI-CA 20070320 import.Jung-uk Kim2007-03-221-11/+13
* Use 'pause' in several places rather than trying to tsleep() on NULL (whichJohn Baldwin2007-02-231-2/+1
* Since DELAY() was moved, most <machine/clock.h> #includes have beenPoul-Henning Kamp2006-05-161-1/+0
* Revert to using acpi_max_threads instead of the hardcoded value of '3'.Scott Long2006-03-301-1/+2
* Add the following to the taskqueue api:Scott Long2006-01-141-24/+1
* Canonize the include of acpi.h.David E. O'Brien2005-09-111-1/+1
* Standardize __FBSDID identifiers.Nate Lawson2005-07-221-2/+3
* Simplify the ACPI taskqueue implementation. Use a thread queue type insteadMark Santcroos2005-05-091-107/+38
* Add the tunable "debug.acpi.max_threads" to allow users to set theNate Lawson2005-04-211-1/+8
* Catch up with AcpiOsSleep() interface change.Mark Santcroos2004-12-021-7/+27
* MPSAFE lockingNate Lawson2004-08-131-38/+9
* Make unnecessary globals static and remove unused includes.Nate Lawson2004-05-061-1/+1
* Style cleanups, M_ZERO instead of bzero.Nate Lawson2004-04-141-22/+20
* If requested to Sleep for less than our hz granularity (e.g., 10 ms),Nate Lawson2003-10-021-6/+13
* Revert 1.24. It causes a hang on shutdown for Marcel. This is due toNate Lawson2003-09-301-9/+1
* If asked to stall for more than 100 us (which is specified as the max inNate Lawson2003-09-291-1/+9
* Invoke 3 ACPI task threads as default if option ACPI_MAX_THREADS isMitsuru IWASAKI2002-10-311-4/+0
* - In AcpiOsGetThreadId(), allow for curproc to be NULL on 4-stable systems.John Baldwin2002-10-161-4/+14
* Some kernel threads try to do significant work, and the default KSTACK_PAGESScott Long2002-10-021-1/+1
* Brutally deal with __func__ being 'const char *' on gcc-3.1.Peter Wemm2002-05-191-4/+4
* Change callers of mtx_init() to pass in an appropriate lock type name. InJohn Baldwin2002-04-041-1/+1
* Do not do string concatenation with __func__ (which is not a string)Peter Wemm2002-03-121-1/+1
* Match namespace cleanup changes in ACPI CA 20020217 update.Mike Smith2002-02-231-5/+5
* Change the preemption code for software interrupt thread schedules andJohn Baldwin2002-01-051-1/+1
* Add OS layer ACPI mutex and threading support.Mitsuru IWASAKI2001-12-221-6/+125
* - Change the taskqueue locking to protect the necessary parts of a taskJohn Baldwin2001-10-261-1/+0