Changeset 33054 in vbox
- Timestamp:
- Oct 12, 2010 11:59:33 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest.cpp
r33053 r33054 46 46 # endif 47 47 #endif 48 #if defined(RT_OS_SOLARIS) 49 # include <iprt/rand.h> 50 #endif 48 51 49 52 … … 61 64 static const size_t cbChangeMemBalloonReq = RT_OFFSETOF(VMMDevChangeMemBalloon, aPhysPage[VMMDEV_MEMORY_BALLOON_CHUNK_PAGES]); 62 65 66 #if defined(RT_OS_SOLARIS) 67 /** 68 * Drag in the rest of IRPT since we share it with the 69 * rest of the kernel modules on Solaris. 70 */ 71 PFNRT g_apfnVBoxGuestIPRTDeps[] = 72 { 73 /* VirtioNet */ 74 (PFNRT)RTRandBytes, 75 NULL 76 }; 77 #endif /* RT_OS_SOLARIS */ 63 78 64 79
Note:
See TracChangeset
for help on using the changeset viewer.