Changeset 27102 in vbox for trunk/src/VBox/VMM/GMM.cpp
- Timestamp:
- Mar 5, 2010 3:21:24 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/GMM.cpp
r27084 r27102 279 279 * @see GMMR0BalloonedPages 280 280 */ 281 GMMR3DECL(int) GMMR3BalloonedPages(PVM pVM, bool fInflate, uint32_t cBalloonedPages)281 GMMR3DECL(int) GMMR3BalloonedPages(PVM pVM, GMMBALLOONACTION enmAction, uint32_t cBalloonedPages) 282 282 { 283 283 GMMBALLOONEDPAGESREQ Req; 284 284 Req.Hdr.u32Magic = SUPVMMR0REQHDR_MAGIC; 285 285 Req.Hdr.cbReq = sizeof(Req); 286 Req. fInflate = fInflate;286 Req.enmAction = enmAction; 287 287 Req.cBalloonedPages = cBalloonedPages; 288 288
Note:
See TracChangeset
for help on using the changeset viewer.