Deleted Added
sdiff udiff text old ( 114237 ) new ( 115351 )
full compact
1/******************************************************************************
2 *
3 * Module Name: dsmethod - Parser/Interpreter interface - control method parsing
4 * $Revision: 90 $
5 *
6 *****************************************************************************/
7
8/******************************************************************************

--- 364 unchanged lines hidden (view full) ---

373 }
374
375 ObjDesc = AcpiNsGetAttachedObject (MethodNode);
376 if (!ObjDesc)
377 {
378 return_ACPI_STATUS (AE_NULL_OBJECT);
379 }
380
381 ObjDesc->Method.OwningId = AcpiUtAllocateOwnerId (ACPI_OWNER_TYPE_METHOD);
382
383 /* Init for new method, wait on concurrency semaphore */
384
385 Status = AcpiDsBeginMethodExecution (MethodNode, ObjDesc,
386 ThisWalkState->MethodNode);
387 if (ACPI_FAILURE (Status))
388 {
389 return_ACPI_STATUS (Status);
390 }

--- 261 unchanged lines hidden ---