]> git.proxmox.com Git - mirror_edk2.git/blob - Metronome.h
10e6dc9b8acba31d397cd48d81fcff6e464dc8b7
[mirror_edk2.git] / Metronome.h
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 Metronome.h
15
16 Abstract:
17
18 UNIX Emulation Metronome Architectural Protocol Driver as defined in DXE CIS
19
20 --*/
21
22 #ifndef _UNIX_THUNK_METRONOME_H_
23 #define _UNIX_THUNK_METRONOME_H_
24
25
26
27 //
28 // Period of on tick in 100 nanosecond units
29 //
30 #define TICK_PERIOD 2000
31
32 //
33 // Function Prototypes
34 //
35
36 EFI_STATUS
37 EFIAPI
38 UnixMetronomeDriverInitialize (
39 IN EFI_HANDLE ImageHandle,
40 IN EFI_SYSTEM_TABLE *SystemTable
41 )
42 /*++
43
44 Routine Description:
45
46 TODO: Add function description
47
48 Arguments:
49
50 ImageHandle - TODO: add argument description
51 SystemTable - TODO: add argument description
52
53 Returns:
54
55 TODO: add return values
56
57 --*/
58 ;
59
60 EFI_STATUS
61 EFIAPI
62 UnixMetronomeDriverWaitForTick (
63 IN EFI_METRONOME_ARCH_PROTOCOL *This,
64 IN UINT32 TickNumber
65 )
66 /*++
67
68 Routine Description:
69
70 TODO: Add function description
71
72 Arguments:
73
74 This - TODO: add argument description
75 TickNumber - TODO: add argument description
76
77 Returns:
78
79 TODO: add return values
80
81 --*/
82 ;
83
84 #endif