]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Core/Dxe/Event/ExecData.c
Update to fix minor coding style issues.
[mirror_edk2.git] / MdeModulePkg / Core / Dxe / Event / ExecData.c
CommitLineData
23c98c94 1/** @file\r
2 Event data is declared in this file.\r
3\r
4Copyright (c) 2006 - 2008, Intel Corporation. <BR>\r
5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
28a00297 12\r
504214c4 13**/\r
28a00297 14\r
15#include <DxeMain.h>\r
16\r
17\r
18//\r
19// gTpl - Task priority level\r
20//\r
21EFI_TPL gEfiCurrentTpl = TPL_APPLICATION;\r
22\r
23\r
24//\r
25// gEventQueueLock - Protects the event queus\r
26//\r
27EFI_LOCK gEventQueueLock = EFI_INITIALIZE_LOCK_VARIABLE (TPL_HIGH_LEVEL);\r
28\r
29//\r
30// gEventQueue - A list of event's to notify for each priority level\r
31// gEventPending - A bitmask of the EventQueues that are pending\r
32//\r
33LIST_ENTRY gEventQueue[TPL_HIGH_LEVEL + 1];\r
34UINTN gEventPending = 0;\r
35\r
36\r
37//\r
38// gEventSignalQueue - A list of events to signal based on EventGroup type\r
39//\r
40LIST_ENTRY gEventSignalQueue = INITIALIZE_LIST_HEAD_VARIABLE (gEventSignalQueue);\r
41\r