Changeset 106294 in vbox for trunk/src/VBox/Devices/VirtIO
- Timestamp:
- Oct 10, 2024 5:42:05 PM (4 months ago)
- Location:
- trunk/src/VBox/Devices/VirtIO
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VirtIO/VirtioCore.cpp
r106061 r106294 634 634 635 635 /** API Fuunction: See header file */ 636 DECLHIDDEN(void) virtioCoreR3VirtqInfo(PPDMDEVINS pDevIns, PCDBGFINFOHLP pHlp, const char *pszArgs, int uVirtq)636 DECLHIDDEN(void) virtioCoreR3VirtqInfo(PPDMDEVINS pDevIns, PCDBGFINFOHLP pHlp, PVIRTIOCORE pVirtio, const char *pszArgs, int uVirtq) 637 637 { 638 638 RT_NOREF(pszArgs); 639 PVIRTIOCORE pVirtio = PDMDEVINS_2_DATA(pDevIns, PVIRTIOCORE);640 639 PVIRTQUEUE pVirtq = &pVirtio->aVirtqueues[uVirtq]; 641 640 -
trunk/src/VBox/Devices/VirtIO/VirtioCore.h
r106061 r106294 769 769 * @param pDevIns The device instance. 770 770 * @param pHlp Pointer to the debug info hlp struct 771 * @param pVirtio Pointer to the virtio core embedded into the calling device 771 772 * @param pszArgs Arguments to function 772 773 */ 773 DECLHIDDEN(void) virtioCoreR3VirtqInfo(PPDMDEVINS pDevIns, PCDBGFINFOHLP pHlp, const char *pszArgs, int uVirtqNbr);774 DECLHIDDEN(void) virtioCoreR3VirtqInfo(PPDMDEVINS pDevIns, PCDBGFINFOHLP pHlp, PVIRTIOCORE pVirtio, const char *pszArgs, int uVirtqNbr); 774 775 775 776 /**
Note:
See TracChangeset
for help on using the changeset viewer.