mirror of
https://github.com/acpica/acpica/
synced 2025-02-14 20:44:05 +03:00
Added mutex for interpreter execution
date 2000.02.22.21.17.00; author rmoore1; state Exp;
This commit is contained in:
parent
6e31ab4111
commit
1d15219635
@ -117,7 +117,7 @@
|
||||
#ifndef _ACPI_INTERNAL_H
|
||||
#define _ACPI_INTERNAL_H
|
||||
|
||||
#include "config.h"
|
||||
#include <config.h>
|
||||
|
||||
|
||||
#define WAIT_FOREVER -1
|
||||
@ -137,14 +137,15 @@ typedef UINT32 ACPI_MUTEX_HANDLE;
|
||||
* All mutex objects are automatically created by CmMutexInitialize.
|
||||
*/
|
||||
|
||||
#define MTX_INTERPRETER 0
|
||||
#define MTX_NAMESPACE 1
|
||||
#define MTX_MEMORY 2
|
||||
#define MTX_GP_EVENT 3
|
||||
#define MTX_FIXED_EVENT 4
|
||||
#define MTX_OP_REGIONS 5
|
||||
#define MTX_EXECUTE 0
|
||||
#define MTX_INTERPRETER 1
|
||||
#define MTX_NAMESPACE 2
|
||||
#define MTX_MEMORY 3
|
||||
#define MTX_GP_EVENT 4
|
||||
#define MTX_FIXED_EVENT 5
|
||||
#define MTX_OP_REGIONS 6
|
||||
|
||||
#define MAX_MTX 5
|
||||
#define MAX_MTX 6
|
||||
#define NUM_MTX MAX_MTX+1
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user