diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2006-11-25 18:24:55 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2006-11-25 18:24:55 +0000 |
commit | 11ce40f2401987f5c79c1ba334e59a5f48686d07 (patch) | |
tree | 0c0f2c4cdd596a6cc29417d7e37b28c523140491 /sys/dev/acpi/dsdt.h | |
parent | 7535b19446bafa37c29fe0cefdcfcc8d3b16b636 (diff) |
Add mutex.
prodded dlg, ok jordan
Diffstat (limited to 'sys/dev/acpi/dsdt.h')
-rw-r--r-- | sys/dev/acpi/dsdt.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/acpi/dsdt.h b/sys/dev/acpi/dsdt.h index 1f45c97046c..b679476d45b 100644 --- a/sys/dev/acpi/dsdt.h +++ b/sys/dev/acpi/dsdt.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dsdt.h,v 1.18 2006/10/24 19:01:48 jordan Exp $ */ +/* $OpenBSD: dsdt.h,v 1.19 2006/11/25 18:24:54 marco Exp $ */ /* * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> * @@ -86,6 +86,9 @@ int aml_evalname(struct acpi_softc *, struct aml_node *, void aml_fixup_dsdt(u_int8_t *, u_int8_t *, int); void aml_create_defaultobjects(void); +int acpi_mutex_acquire(struct aml_value *, int); +void acpi_mutex_release(struct aml_value *); + #define ACPI_E_NOERROR 0x00 #define ACPI_E_BADVALUE 0x01 |