- Timestamp:
- Mar 27, 2009 6:18:04 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r18370 r18372 293 293 Assert(!g_pSUPGlobalInfoPage); 294 294 SUPGIPMAP GipMapReq; 295 GipMapReq.Hdr.u32Cookie = g_u32Cookie;296 GipMapReq.Hdr.u32SessionCookie = g_u32SessionCookie;297 GipMapReq.Hdr.cbIn = SUP_IOCTL_GIP_MAP_SIZE_IN;298 GipMapReq.Hdr.cbOut = SUP_IOCTL_GIP_MAP_SIZE_OUT;299 GipMapReq.Hdr.fFlags = SUPREQHDR_FLAGS_DEFAULT;300 GipMapReq.Hdr.rc = VERR_INTERNAL_ERROR;301 GipMapReq.u.Out.HCPhysGip = NIL_RTHCPHYS;302 GipMapReq.u.Out.pGipR0 = NIL_RTR0PTR;303 GipMapReq.u.Out.pGipR3 = NULL;295 GipMapReq.Hdr.u32Cookie = CookieReq.u.Out.u32Cookie; 296 GipMapReq.Hdr.u32SessionCookie = CookieReq.u.Out.u32SessionCookie; 297 GipMapReq.Hdr.cbIn = SUP_IOCTL_GIP_MAP_SIZE_IN; 298 GipMapReq.Hdr.cbOut = SUP_IOCTL_GIP_MAP_SIZE_OUT; 299 GipMapReq.Hdr.fFlags = SUPREQHDR_FLAGS_DEFAULT; 300 GipMapReq.Hdr.rc = VERR_INTERNAL_ERROR; 301 GipMapReq.u.Out.HCPhysGip = NIL_RTHCPHYS; 302 GipMapReq.u.Out.pGipR0 = NIL_RTR0PTR; 303 GipMapReq.u.Out.pGipR3 = NULL; 304 304 rc = suplibOsIOCtl(&g_supLibData, SUP_IOCTL_GIP_MAP, &GipMapReq, SUP_IOCTL_GIP_MAP_SIZE); 305 305 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.