1 /*******************************************************************************
3 * Module Name: dbexec - debugger control method execution
5 ******************************************************************************/
7 /******************************************************************************
11 * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
12 * All rights reserved.
16 * 2.1. This is your license from Intel Corp. under its intellectual property
17 * rights. You may have additional license terms from the party that provided
18 * you this software, covering your right to use that party's intellectual
21 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
22 * copy of the source code appearing in this file ("Covered Code") an
23 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
24 * base code distributed originally by Intel ("Original Intel Code") to copy,
25 * make derivatives, distribute, use and display any portion of the Covered
26 * Code in any form, with the right to sublicense such rights; and
28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
29 * license (with the right to sublicense), under only those claims of Intel
30 * patents that are infringed by the Original Intel Code, to make, use, sell,
31 * offer to sell, and import the Covered Code and derivative works thereof
32 * solely to the minimum extent necessary to exercise the above copyright
33 * license, and in no event shall the patent license extend to any additions
34 * to or modifications of the Original Intel Code. No other license or right
35 * is granted directly or by implication, estoppel or otherwise;
37 * The above copyright and patent license is granted only if the following
42 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43 * Redistribution of source code of any substantial portion of the Covered
44 * Code or modification with rights to further distribute source must include
45 * the above Copyright Notice, the above License, this list of Conditions,
46 * and the following Disclaimer and Export Compliance provision. In addition,
47 * Licensee must cause all Covered Code to which Licensee contributes to
48 * contain a file documenting the changes Licensee made to create that Covered
49 * Code and the date of any change. Licensee must include in that file the
50 * documentation of any changes made by any predecessor Licensee. Licensee
51 * must include a prominent statement that the modification is derived,
52 * directly or indirectly, from Original Intel Code.
54 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55 * Redistribution of source code of any substantial portion of the Covered
56 * Code or modification without rights to further distribute source must
57 * include the following Disclaimer and Export Compliance provision in the
58 * documentation and/or other materials provided with distribution. In
59 * addition, Licensee may not authorize further sublicense of source of any
60 * portion of the Covered Code, and must include terms to the effect that the
61 * license from Licensee to its licensee is limited to the intellectual
62 * property embodied in the software Licensee provides to its licensee, and
63 * not to intellectual property embodied in modifications its licensee may
66 * 3.3. Redistribution of Executable. Redistribution in executable form of any
67 * substantial portion of the Covered Code or modification must reproduce the
68 * above Copyright Notice, and the following Disclaimer and Export Compliance
69 * provision in the documentation and/or other materials provided with the
72 * 3.4. Intel retains all right, title, and interest in and to the Original
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
76 * Intel shall be used in advertising or otherwise to promote the sale, use or
77 * other dealings in products derived from or relating to the Covered Code
78 * without prior written authorization from Intel.
80 * 4. Disclaimer and Export Compliance
82 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
83 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
84 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
85 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
86 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
87 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
90 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
91 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
92 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
93 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
94 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
95 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
96 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
99 * 4.3. Licensee shall not export, either directly or indirectly, any of this
100 * software or system incorporating such software without first obtaining any
101 * required license or other approval from the U. S. Department of Commerce or
102 * any other agency or department of the United States Government. In the
103 * event Licensee exports any such software from the United States or
104 * re-exports any such software from a foreign destination, Licensee shall
105 * ensure that the distribution and export/re-export of the software is in
106 * compliance with all laws, regulations, orders, or other restrictions of the
107 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
108 * any of its subsidiaries will export/re-export any technical data, process,
109 * software, or service, directly or indirectly, to any country for which the
110 * United States government or any agency thereof requires an export license,
111 * other governmental approval, or letter of assurance, without first obtaining
112 * such license, approval or letter.
114 *****************************************************************************/
118 #include "accommon.h"
120 #include "acnamesp.h"
124 #define _COMPONENT ACPI_CA_DEBUGGER
125 ACPI_MODULE_NAME ("dbexec")
128 static ACPI_DB_METHOD_INFO AcpiGbl_DbMethodInfo
;
130 /* Local prototypes */
133 AcpiDbExecuteMethod (
134 ACPI_DB_METHOD_INFO
*Info
,
135 ACPI_BUFFER
*ReturnObj
);
139 ACPI_DB_METHOD_INFO
*Info
);
142 AcpiDbGetOutstandingAllocations (
145 static void ACPI_SYSTEM_XFACE
150 AcpiDbExecutionWalk (
151 ACPI_HANDLE ObjHandle
,
157 /*******************************************************************************
159 * FUNCTION: AcpiDbExecuteMethod
161 * PARAMETERS: Info - Valid info segment
162 * ReturnObj - Where to put return object
166 * DESCRIPTION: Execute a control method.
168 ******************************************************************************/
171 AcpiDbExecuteMethod (
172 ACPI_DB_METHOD_INFO
*Info
,
173 ACPI_BUFFER
*ReturnObj
)
176 ACPI_OBJECT_LIST ParamObjects
;
177 ACPI_OBJECT Params
[ACPI_METHOD_NUM_ARGS
];
180 ACPI_DEVICE_INFO
*ObjInfo
;
183 if (AcpiGbl_DbOutputToFile
&& !AcpiDbgLevel
)
185 AcpiOsPrintf ("Warning: debug output is not enabled!\n");
188 /* Get the NS node, determines existence also */
190 Status
= AcpiGetHandle (NULL
, Info
->Pathname
, &Handle
);
191 if (ACPI_FAILURE (Status
))
196 /* Get the object info for number of method parameters */
198 Status
= AcpiGetObjectInfo (Handle
, &ObjInfo
);
199 if (ACPI_FAILURE (Status
))
204 ParamObjects
.Pointer
= NULL
;
205 ParamObjects
.Count
= 0;
207 if (ObjInfo
->Type
== ACPI_TYPE_METHOD
)
209 /* Are there arguments to the method? */
211 if (Info
->Args
&& Info
->Args
[0])
213 for (i
= 0; Info
->Args
[i
] && i
< ACPI_METHOD_NUM_ARGS
; i
++)
215 Params
[i
].Type
= ACPI_TYPE_INTEGER
;
216 Params
[i
].Integer
.Value
= ACPI_STRTOUL (Info
->Args
[i
], NULL
, 16);
219 ParamObjects
.Pointer
= Params
;
220 ParamObjects
.Count
= i
;
224 /* Setup default parameters */
226 for (i
= 0; i
< ObjInfo
->ParamCount
; i
++)
232 Params
[0].Type
= ACPI_TYPE_INTEGER
;
233 Params
[0].Integer
.Value
= 0x01020304;
238 Params
[1].Type
= ACPI_TYPE_STRING
;
239 Params
[1].String
.Length
= 12;
240 Params
[1].String
.Pointer
= __UNCONST("AML Debugger");
245 Params
[i
].Type
= ACPI_TYPE_INTEGER
;
246 Params
[i
].Integer
.Value
= i
* (ACPI_INTEGER
) 0x1000;
251 ParamObjects
.Pointer
= Params
;
252 ParamObjects
.Count
= ObjInfo
->ParamCount
;
258 /* Prepare for a return object of arbitrary size */
260 ReturnObj
->Pointer
= AcpiGbl_DbBuffer
;
261 ReturnObj
->Length
= ACPI_DEBUG_BUFFER_SIZE
;
263 /* Do the actual method execution */
265 AcpiGbl_MethodExecuting
= TRUE
;
266 Status
= AcpiEvaluateObject (NULL
,
267 Info
->Pathname
, &ParamObjects
, ReturnObj
);
269 AcpiGbl_CmSingleStep
= FALSE
;
270 AcpiGbl_MethodExecuting
= FALSE
;
276 /*******************************************************************************
278 * FUNCTION: AcpiDbExecuteSetup
280 * PARAMETERS: Info - Valid method info
284 * DESCRIPTION: Setup info segment prior to method execution
286 ******************************************************************************/
290 ACPI_DB_METHOD_INFO
*Info
)
293 /* Catenate the current scope to the supplied name */
295 Info
->Pathname
[0] = 0;
296 if ((Info
->Name
[0] != '\\') &&
297 (Info
->Name
[0] != '/'))
299 ACPI_STRCAT (Info
->Pathname
, AcpiGbl_DbScopeBuf
);
302 ACPI_STRCAT (Info
->Pathname
, Info
->Name
);
303 AcpiDbPrepNamestring (Info
->Pathname
);
305 AcpiDbSetOutputDestination (ACPI_DB_DUPLICATE_OUTPUT
);
306 AcpiOsPrintf ("Executing %s\n", Info
->Pathname
);
308 if (Info
->Flags
& EX_SINGLE_STEP
)
310 AcpiGbl_CmSingleStep
= TRUE
;
311 AcpiDbSetOutputDestination (ACPI_DB_CONSOLE_OUTPUT
);
316 /* No single step, allow redirection to a file */
318 AcpiDbSetOutputDestination (ACPI_DB_REDIRECTABLE_OUTPUT
);
323 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
326 ACPI_MEMORY_LIST
*Cache
)
329 return (Cache
->TotalAllocated
- Cache
->TotalFreed
- Cache
->CurrentDepth
);
333 /*******************************************************************************
335 * FUNCTION: AcpiDbGetOutstandingAllocations
339 * RETURN: Current global allocation count minus cache entries
341 * DESCRIPTION: Determine the current number of "outstanding" allocations --
342 * those allocations that have not been freed and also are not
343 * in one of the various object caches.
345 ******************************************************************************/
348 AcpiDbGetOutstandingAllocations (
351 UINT32 Outstanding
= 0;
353 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
355 Outstanding
+= AcpiDbGetCacheInfo (AcpiGbl_StateCache
);
356 Outstanding
+= AcpiDbGetCacheInfo (AcpiGbl_PsNodeCache
);
357 Outstanding
+= AcpiDbGetCacheInfo (AcpiGbl_PsNodeExtCache
);
358 Outstanding
+= AcpiDbGetCacheInfo (AcpiGbl_OperandCache
);
361 return (Outstanding
);
365 /*******************************************************************************
367 * FUNCTION: AcpiDbExecutionWalk
369 * PARAMETERS: WALK_CALLBACK
373 * DESCRIPTION: Execute a control method. Name is relative to the current
376 ******************************************************************************/
379 AcpiDbExecutionWalk (
380 ACPI_HANDLE ObjHandle
,
385 ACPI_OPERAND_OBJECT
*ObjDesc
;
386 ACPI_NAMESPACE_NODE
*Node
= (ACPI_NAMESPACE_NODE
*) ObjHandle
;
387 ACPI_BUFFER ReturnObj
;
391 ObjDesc
= AcpiNsGetAttachedObject (Node
);
392 if (ObjDesc
->Method
.ParamCount
)
397 ReturnObj
.Pointer
= NULL
;
398 ReturnObj
.Length
= ACPI_ALLOCATE_BUFFER
;
400 AcpiNsPrintNodePathname (Node
, "Execute");
402 /* Do the actual method execution */
405 AcpiGbl_MethodExecuting
= TRUE
;
407 Status
= AcpiEvaluateObject (Node
, NULL
, NULL
, &ReturnObj
);
409 AcpiOsPrintf ("[%4.4s] returned %s\n", AcpiUtGetNodeName (Node
),
410 AcpiFormatException (Status
));
411 AcpiGbl_MethodExecuting
= FALSE
;
417 /*******************************************************************************
419 * FUNCTION: AcpiDbExecute
421 * PARAMETERS: Name - Name of method to execute
422 * Args - Parameters to the method
423 * Flags - single step/no single step
427 * DESCRIPTION: Execute a control method. Name is relative to the current
430 ******************************************************************************/
439 ACPI_BUFFER ReturnObj
;
443 #ifdef ACPI_DEBUG_OUTPUT
444 UINT32 PreviousAllocations
;
448 /* Memory allocation tracking */
450 PreviousAllocations
= AcpiDbGetOutstandingAllocations ();
455 (void) AcpiWalkNamespace (ACPI_TYPE_METHOD
, ACPI_ROOT_OBJECT
,
456 ACPI_UINT32_MAX
, AcpiDbExecutionWalk
, NULL
, NULL
);
461 NameString
= ACPI_ALLOCATE (ACPI_STRLEN (Name
) + 1);
467 ACPI_MEMSET (&AcpiGbl_DbMethodInfo
, 0, sizeof (ACPI_DB_METHOD_INFO
));
469 ACPI_STRCPY (NameString
, Name
);
470 AcpiUtStrupr (NameString
);
471 AcpiGbl_DbMethodInfo
.Name
= NameString
;
472 AcpiGbl_DbMethodInfo
.Args
= Args
;
473 AcpiGbl_DbMethodInfo
.Flags
= Flags
;
475 ReturnObj
.Pointer
= NULL
;
476 ReturnObj
.Length
= ACPI_ALLOCATE_BUFFER
;
478 AcpiDbExecuteSetup (&AcpiGbl_DbMethodInfo
);
479 Status
= AcpiDbExecuteMethod (&AcpiGbl_DbMethodInfo
, &ReturnObj
);
480 ACPI_FREE (NameString
);
484 * Allow any handlers in separate threads to complete.
485 * (Such as Notify handlers invoked from AML executed above).
487 AcpiOsSleep ((ACPI_INTEGER
) 10);
490 #ifdef ACPI_DEBUG_OUTPUT
492 /* Memory allocation tracking */
494 Allocations
= AcpiDbGetOutstandingAllocations () - PreviousAllocations
;
496 AcpiDbSetOutputDestination (ACPI_DB_DUPLICATE_OUTPUT
);
500 AcpiOsPrintf ("Outstanding: 0x%X allocations after execution\n",
505 if (ACPI_FAILURE (Status
))
507 AcpiOsPrintf ("Execution of %s failed with status %s\n",
508 AcpiGbl_DbMethodInfo
.Pathname
, AcpiFormatException (Status
));
512 /* Display a return object, if any */
514 if (ReturnObj
.Length
)
516 AcpiOsPrintf ("Execution of %s returned object %p Buflen %X\n",
517 AcpiGbl_DbMethodInfo
.Pathname
, ReturnObj
.Pointer
,
518 (UINT32
) ReturnObj
.Length
);
519 AcpiDbDumpExternalObject (ReturnObj
.Pointer
, 1);
523 AcpiOsPrintf ("No return object from execution of %s\n",
524 AcpiGbl_DbMethodInfo
.Pathname
);
528 AcpiDbSetOutputDestination (ACPI_DB_CONSOLE_OUTPUT
);
532 /*******************************************************************************
534 * FUNCTION: AcpiDbMethodThread
536 * PARAMETERS: Context - Execution info segment
540 * DESCRIPTION: Debugger execute thread. Waits for a command line, then
541 * simply dispatches it.
543 ******************************************************************************/
545 static void ACPI_SYSTEM_XFACE
550 ACPI_DB_METHOD_INFO
*Info
= Context
;
551 ACPI_DB_METHOD_INFO LocalInfo
;
554 ACPI_BUFFER ReturnObj
;
558 * AcpiGbl_DbMethodInfo.Arguments will be passed as method arguments.
559 * Prevent AcpiGbl_DbMethodInfo from being modified by multiple threads
562 * Note: The arguments we are passing are used by the ASL test suite
563 * (aslts). Do not change them without updating the tests.
565 (void) AcpiOsWaitSemaphore (Info
->InfoGate
, 1, ACPI_WAIT_FOREVER
);
569 AcpiDbUInt32ToHexString (Info
->NumCreated
, Info
->IndexOfThreadStr
);
570 AcpiDbUInt32ToHexString (ACPI_TO_INTEGER (AcpiOsGetThreadId ()),
571 Info
->IdOfThreadStr
);
574 if (Info
->Threads
&& (Info
->NumCreated
< Info
->NumThreads
))
576 Info
->Threads
[Info
->NumCreated
++] =
577 ACPI_TO_INTEGER (AcpiOsGetThreadId());
581 LocalInfo
.Args
= LocalInfo
.Arguments
;
582 LocalInfo
.Arguments
[0] = LocalInfo
.NumThreadsStr
;
583 LocalInfo
.Arguments
[1] = LocalInfo
.IdOfThreadStr
;
584 LocalInfo
.Arguments
[2] = LocalInfo
.IndexOfThreadStr
;
585 LocalInfo
.Arguments
[3] = NULL
;
587 (void) AcpiOsSignalSemaphore (Info
->InfoGate
, 1);
589 for (i
= 0; i
< Info
->NumLoops
; i
++)
591 Status
= AcpiDbExecuteMethod (&LocalInfo
, &ReturnObj
);
592 if (ACPI_FAILURE (Status
))
594 AcpiOsPrintf ("%s During execution of %s at iteration %X\n",
595 AcpiFormatException (Status
), Info
->Pathname
, i
);
596 if (Status
== AE_ABORT_METHOD
)
605 AcpiOsPrintf ("%d executions, Thread 0x%x\n", i
, AcpiOsGetThreadId ());
608 if (ReturnObj
.Length
)
610 AcpiOsPrintf ("Execution of %s returned object %p Buflen %X\n",
611 Info
->Pathname
, ReturnObj
.Pointer
, (UINT32
) ReturnObj
.Length
);
612 AcpiDbDumpExternalObject (ReturnObj
.Pointer
, 1);
617 /* Signal our completion */
620 (void) AcpiOsWaitSemaphore (Info
->ThreadCompleteGate
, 1, ACPI_WAIT_FOREVER
);
621 Info
->NumCompleted
++;
623 if (Info
->NumCompleted
== Info
->NumThreads
)
625 /* Do signal for main thread once only */
629 (void) AcpiOsSignalSemaphore (Info
->ThreadCompleteGate
, 1);
633 Status
= AcpiOsSignalSemaphore (Info
->MainThreadGate
, 1);
634 if (ACPI_FAILURE (Status
))
636 AcpiOsPrintf ("Could not signal debugger thread sync semaphore, %s\n",
637 AcpiFormatException (Status
));
643 /*******************************************************************************
645 * FUNCTION: AcpiDbCreateExecutionThreads
647 * PARAMETERS: NumThreadsArg - Number of threads to create
648 * NumLoopsArg - Loop count for the thread(s)
649 * MethodNameArg - Control method to execute
653 * DESCRIPTION: Create threads to execute method(s)
655 ******************************************************************************/
658 AcpiDbCreateExecutionThreads (
668 ACPI_MUTEX MainThreadGate
;
669 ACPI_MUTEX ThreadCompleteGate
;
673 /* Get the arguments */
675 NumThreads
= ACPI_STRTOUL (NumThreadsArg
, NULL
, 0);
676 NumLoops
= ACPI_STRTOUL (NumLoopsArg
, NULL
, 0);
678 if (!NumThreads
|| !NumLoops
)
680 AcpiOsPrintf ("Bad argument: Threads %X, Loops %X\n",
681 NumThreads
, NumLoops
);
686 * Create the semaphore for synchronization of
687 * the created threads with the main thread.
689 Status
= AcpiOsCreateSemaphore (1, 0, &MainThreadGate
);
690 if (ACPI_FAILURE (Status
))
692 AcpiOsPrintf ("Could not create semaphore for synchronization with the main thread, %s\n",
693 AcpiFormatException (Status
));
698 * Create the semaphore for synchronization
699 * between the created threads.
701 Status
= AcpiOsCreateSemaphore (1, 1, &ThreadCompleteGate
);
702 if (ACPI_FAILURE (Status
))
704 AcpiOsPrintf ("Could not create semaphore for synchronization between the created threads, %s\n",
705 AcpiFormatException (Status
));
706 (void) AcpiOsDeleteSemaphore (MainThreadGate
);
710 Status
= AcpiOsCreateSemaphore (1, 1, &InfoGate
);
711 if (ACPI_FAILURE (Status
))
713 AcpiOsPrintf ("Could not create semaphore for synchronization of AcpiGbl_DbMethodInfo, %s\n",
714 AcpiFormatException (Status
));
715 (void) AcpiOsDeleteSemaphore (ThreadCompleteGate
);
716 (void) AcpiOsDeleteSemaphore (MainThreadGate
);
720 ACPI_MEMSET (&AcpiGbl_DbMethodInfo
, 0, sizeof (ACPI_DB_METHOD_INFO
));
722 /* Array to store IDs of threads */
724 AcpiGbl_DbMethodInfo
.NumThreads
= NumThreads
;
725 Size
= 4 * AcpiGbl_DbMethodInfo
.NumThreads
;
726 AcpiGbl_DbMethodInfo
.Threads
= (UINT32
*) AcpiOsAllocate (Size
);
727 if (AcpiGbl_DbMethodInfo
.Threads
== NULL
)
729 AcpiOsPrintf ("No memory for thread IDs array\n");
730 (void) AcpiOsDeleteSemaphore (MainThreadGate
);
731 (void) AcpiOsDeleteSemaphore (ThreadCompleteGate
);
732 (void) AcpiOsDeleteSemaphore (InfoGate
);
735 ACPI_MEMSET (AcpiGbl_DbMethodInfo
.Threads
, 0, Size
);
737 /* Setup the context to be passed to each thread */
739 AcpiGbl_DbMethodInfo
.Name
= MethodNameArg
;
740 AcpiGbl_DbMethodInfo
.Flags
= 0;
741 AcpiGbl_DbMethodInfo
.NumLoops
= NumLoops
;
742 AcpiGbl_DbMethodInfo
.MainThreadGate
= MainThreadGate
;
743 AcpiGbl_DbMethodInfo
.ThreadCompleteGate
= ThreadCompleteGate
;
744 AcpiGbl_DbMethodInfo
.InfoGate
= InfoGate
;
746 /* Init arguments to be passed to method */
748 AcpiGbl_DbMethodInfo
.InitArgs
= 1;
749 AcpiGbl_DbMethodInfo
.Args
= AcpiGbl_DbMethodInfo
.Arguments
;
750 AcpiGbl_DbMethodInfo
.Arguments
[0] = AcpiGbl_DbMethodInfo
.NumThreadsStr
;
751 AcpiGbl_DbMethodInfo
.Arguments
[1] = AcpiGbl_DbMethodInfo
.IdOfThreadStr
;
752 AcpiGbl_DbMethodInfo
.Arguments
[2] = AcpiGbl_DbMethodInfo
.IndexOfThreadStr
;
753 AcpiGbl_DbMethodInfo
.Arguments
[3] = NULL
;
754 AcpiDbUInt32ToHexString (NumThreads
, AcpiGbl_DbMethodInfo
.NumThreadsStr
);
756 AcpiDbExecuteSetup (&AcpiGbl_DbMethodInfo
);
758 /* Create the threads */
760 AcpiOsPrintf ("Creating %X threads to execute %X times each\n",
761 NumThreads
, NumLoops
);
763 for (i
= 0; i
< (NumThreads
); i
++)
765 Status
= AcpiOsExecute (OSL_DEBUGGER_THREAD
, AcpiDbMethodThread
,
766 &AcpiGbl_DbMethodInfo
);
767 if (ACPI_FAILURE (Status
))
773 /* Wait for all threads to complete */
775 (void) AcpiOsWaitSemaphore (MainThreadGate
, 1, ACPI_WAIT_FOREVER
);
777 AcpiDbSetOutputDestination (ACPI_DB_DUPLICATE_OUTPUT
);
778 AcpiOsPrintf ("All threads (%X) have completed\n", NumThreads
);
779 AcpiDbSetOutputDestination (ACPI_DB_CONSOLE_OUTPUT
);
781 /* Cleanup and exit */
783 (void) AcpiOsDeleteSemaphore (MainThreadGate
);
784 (void) AcpiOsDeleteSemaphore (ThreadCompleteGate
);
785 (void) AcpiOsDeleteSemaphore (InfoGate
);
787 AcpiOsFree (AcpiGbl_DbMethodInfo
.Threads
);
788 AcpiGbl_DbMethodInfo
.Threads
= NULL
;
791 #endif /* ACPI_DEBUGGER */