diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2017-11-10 17:54:38 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2017-11-10 17:54:38 +0000 |
| commit | e692a0ddd0131f04acfda4c63b1a4c0c805feef5 (patch) | |
| tree | 5c1c811fa437c871de8d5ea5d7a22ed7ed40b725 /source/include/aclocal.h | |
| parent | 2c673001fb88105f2d160032c4d4b76cb518e37f (diff) | |
Notes
Diffstat (limited to 'source/include/aclocal.h')
| -rw-r--r-- | source/include/aclocal.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/source/include/aclocal.h b/source/include/aclocal.h index 7a20fe6fca66..5ad319024ad9 100644 --- a/source/include/aclocal.h +++ b/source/include/aclocal.h @@ -1532,16 +1532,17 @@ typedef struct acpi_db_method_info ACPI_OBJECT_TYPE *Types; /* - * Arguments to be passed to method for the command - * Threads - - * the Number of threads, ID of current thread and - * Index of current thread inside all them created. + * Arguments to be passed to method for the commands Threads and + * Background. Note, ACPI specifies a maximum of 7 arguments (0 - 6). + * + * For the Threads command, the Number of threads, ID of current + * thread and Index of current thread inside all them created. */ char InitArgs; #ifdef ACPI_DEBUGGER - ACPI_OBJECT_TYPE ArgTypes[4]; + ACPI_OBJECT_TYPE ArgTypes[ACPI_METHOD_NUM_ARGS]; #endif - char *Arguments[4]; + char *Arguments[ACPI_METHOD_NUM_ARGS]; char NumThreadsStr[11]; char IdOfThreadStr[11]; char IndexOfThreadStr[11]; |
