Changeset 93022 in vbox
- Timestamp:
- Dec 17, 2021 6:05:16 PM (3 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxService
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/Makefile.kmk
r86828 r93022 133 133 134 134 ifdef VBOX_WITH_VBOXSERVICE_MANAGEMENT 135 VBoxService_SOURCES += \ 135 ifdef VBOX_WITH_MEMBALLOON 136 VBoxService_SOURCES += \ 136 137 VBoxServiceBalloon.cpp 137 ifdef VBOX_WITH_MEMBALLOON 138 VBoxService_DEFS += VBOX_WITH_MEMBALLOON 138 VBoxService_DEFS += VBOX_WITH_MEMBALLOON 139 139 endif 140 140 endif -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceInternal.h
r92767 r93022 263 263 #endif /* RT_OS_WINDOWS */ 264 264 265 #ifdef VBOX_WITH_ VBOXSERVICE_MANAGEMENT265 #ifdef VBOX_WITH_MEMBALLOON 266 266 extern uint32_t VGSvcBalloonQueryPages(uint32_t cbPage); 267 267 #endif -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceStats.cpp
r85121 r93022 535 535 | VBOX_GUEST_STAT_MEM_SYSTEM_CACHE 536 536 | VBOX_GUEST_STAT_PAGE_FILE_SIZE; 537 # ifdef VBOX_WITH_MEMBALLOON537 # ifdef VBOX_WITH_MEMBALLOON 538 538 req.guestStats.u32PhysMemBalloon = VGSvcBalloonQueryPages(_4K); 539 539 req.guestStats.u32StatCaps |= VBOX_GUEST_STAT_PHYS_MEM_BALLOON; 540 # else540 # else 541 541 req.guestStats.u32PhysMemBalloon = 0; 542 # endif542 # endif 543 543 544 544 /*
Note:
See TracChangeset
for help on using the changeset viewer.