Deleted Added
full compact
OsdSchedule.c (148318) OsdSchedule.c (150003)
1/*-
2 * Copyright (c) 2000 Michael Smith
3 * Copyright (c) 2000 BSDi
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 16 unchanged lines hidden (view full) ---

25 * SUCH DAMAGE.
26 */
27
28/*
29 * 6.3 : Scheduling services
30 */
31
32#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2000 Michael Smith
3 * Copyright (c) 2000 BSDi
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 16 unchanged lines hidden (view full) ---

25 * SUCH DAMAGE.
26 */
27
28/*
29 * 6.3 : Scheduling services
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/dev/acpica/Osd/OsdSchedule.c 148318 2005-07-22 23:10:02Z njl $");
33__FBSDID("$FreeBSD: head/sys/dev/acpica/Osd/OsdSchedule.c 150003 2005-09-11 18:39:03Z obrien $");
34
35#include "opt_acpi.h"
36#include <sys/param.h>
37#include <sys/systm.h>
38#include <sys/bus.h>
39#include <sys/interrupt.h>
40#include <sys/kernel.h>
41#include <sys/kthread.h>
42#include <sys/malloc.h>
43#include <sys/proc.h>
44#include <sys/taskqueue.h>
45#include <machine/clock.h>
46
34
35#include "opt_acpi.h"
36#include <sys/param.h>
37#include <sys/systm.h>
38#include <sys/bus.h>
39#include <sys/interrupt.h>
40#include <sys/kernel.h>
41#include <sys/kthread.h>
42#include <sys/malloc.h>
43#include <sys/proc.h>
44#include <sys/taskqueue.h>
45#include <machine/clock.h>
46
47#include "acpi.h"
47#include <contrib/dev/acpica/acpi.h>
48#include <dev/acpica/acpivar.h>
49
50#define _COMPONENT ACPI_OS_SERVICES
51ACPI_MODULE_NAME("SCHEDULE")
52
53/*
54 * Allow the user to tune the number of task threads we start. It seems
55 * some systems have problems with increased parallelism.

--- 162 unchanged lines hidden ---
48#include <dev/acpica/acpivar.h>
49
50#define _COMPONENT ACPI_OS_SERVICES
51ACPI_MODULE_NAME("SCHEDULE")
52
53/*
54 * Allow the user to tune the number of task threads we start. It seems
55 * some systems have problems with increased parallelism.

--- 162 unchanged lines hidden ---