summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica/Osd/OsdSchedule.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/acpica/Osd/OsdSchedule.c')
-rw-r--r--sys/dev/acpica/Osd/OsdSchedule.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/acpica/Osd/OsdSchedule.c b/sys/dev/acpica/Osd/OsdSchedule.c
index 48e4dfe..548a97d 100644
--- a/sys/dev/acpica/Osd/OsdSchedule.c
+++ b/sys/dev/acpica/Osd/OsdSchedule.c
@@ -187,13 +187,9 @@ AcpiOsStall(UINT32 Microseconds)
ACPI_THREAD_ID
AcpiOsGetThreadId(void)
{
- struct proc *p;
/* XXX do not add ACPI_FUNCTION_TRACE here, results in recursive call. */
- p = curproc;
- KASSERT(p != NULL, ("%s: curproc is NULL!", __func__));
-
/* Returning 0 is not allowed. */
- return (p->p_pid + 1);
+ return (curthread->td_tid + 1);
}
OpenPOWER on IntegriCloud