Changeset 13813 in vbox for trunk/src/VBox/Runtime/gc/initterm-gc.cpp
- Timestamp:
- Nov 4, 2008 9:55:34 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/gc/initterm-gc.cpp
r8245 r13813 1 1 /* $Id$ */ 2 2 /** @file 3 * IPRT - Init GuestContext.3 * IPRT - Init Raw-mode Context. 4 4 */ 5 5 … … 64 64 65 65 /** 66 * Init alizes the guest context runtime library.66 * Initializes the raw-mode context runtime library. 67 67 * 68 68 * @returns iprt status code. … … 70 70 * @param u64ProgramStartNanoTS The startup timestamp. 71 71 */ 72 RTGCDECL(int) RT GCInit(uint64_t u64ProgramStartNanoTS)72 RTGCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS) 73 73 { 74 74 /* … … 85 85 86 86 /** 87 * Terminates the guestcontext runtime library.87 * Terminates the raw-mode context runtime library. 88 88 */ 89 RTGCDECL(void) RT GCTerm(void)89 RTGCDECL(void) RTRCTerm(void) 90 90 { 91 91 /* do nothing */
Note:
See TracChangeset
for help on using the changeset viewer.