Changeset 55436 in vbox for trunk/include/VBox
- Timestamp:
- Apr 27, 2015 9:13:02 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99782
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r55435 r55436 33 33 #include <iprt/stdarg.h> 34 34 #include <iprt/cpuset.h> 35 #include <iprt/power.h>36 35 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 37 36 # include <iprt/asm-amd64-x86.h> … … 1071 1070 * Initializes the support library. 1072 1071 * 1073 * Each successful call to SUPR3Init() or SUPR3InitEx ()must be countered by a1072 * Each successful call to SUPR3Init() or SUPR3InitEx must be countered by a 1074 1073 * call to SUPR3Term(false). 1075 1074 * … … 1083 1082 * Initializes the support library, extended version. 1084 1083 * 1085 * Each successful call to SUPR3Init() or SUPR3InitEx ()must be countered by a1084 * Each successful call to SUPR3Init() or SUPR3InitEx must be countered by a 1086 1085 * call to SUPR3Term(false). 1087 1086 * … … 1745 1744 */ 1746 1745 SUPR3DECL(int) SUPR3ReadTsc(uint64_t *puTsc, uint16_t *pidApic); 1747 1748 1749 /**1750 * Waits for a host power event.1751 *1752 * This times out every few seconds, so caller is expected to retry if needed.1753 *1754 * @returns VBox status code.1755 * @param pEvent Where to store the power event that occurs.1756 */1757 SUPR3DECL(int) SUPR3WaitForPowerEvent(RTPOWEREVENT *pEvent);1758 1759 1760 /**1761 * Acknowledges a host power event.1762 *1763 * @returns VBox status code.1764 */1765 SUPR3DECL(int) SUPR3AckPowerEvent(void);1766 1746 1767 1747 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.