Changeset 81369 in vbox
- Timestamp:
- Oct 18, 2019 9:13:03 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134082
- Location:
- trunk
- Files:
-
- 60 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/clipboard-helper.h
r81223 r81369 82 82 * @param pwszSrc The source UTF-16 string 83 83 * @param cwcSrc The length of the source string in RTUTF16 units. 84 * @ retvalpcwcDst The length of the destination string in RTUTF16 units.84 * @param pcwcDst The length of the destination string in RTUTF16 units. 85 85 */ 86 86 int ShClUtf16GetLinSize(PRTUTF16 pwszSrc, size_t cwcSrc, size_t *pcwcDst); -
trunk/include/VBox/VMMDev.h
r77893 r81369 85 85 * @remarks These defines also live in the 16-bit and assembly versions of this 86 86 * header. 87 * @{ 87 88 */ 88 89 #define VMMDEV_VERSION 0x00010004 … … 1853 1854 } 1854 1855 1855 /** @} */1856 1856 1857 1857 /** @name VBVA ring defines. … … 1872 1872 * until the record is completed. 1873 1873 * 1874 * /1874 * @{ */ 1875 1875 #define VMMDEV_VBVA_RING_BUFFER_SIZE (_4M - _1K) 1876 1876 #define VMMDEV_VBVA_RING_BUFFER_THRESHOLD (4 * _1K) … … 1965 1965 /** @} */ 1966 1966 1967 /** @} */ 1967 1968 RT_C_DECLS_END 1968 1969 #pragma pack() -
trunk/include/VBox/types.h
r81031 r81369 831 831 } VBOXIDTR, *PVBOXIDTR; 832 832 #pragma pack() 833 834 /** @} */835 833 836 834 -
trunk/include/VBox/vd-ifs-internal.h
r76585 r81369 34 34 35 35 RT_C_DECLS_BEGIN 36 37 /** @addtogroup grp_vd 38 * @internal 39 * @{ */ 36 40 37 41 /** … … 684 688 } 685 689 690 /** @} */ 686 691 RT_C_DECLS_END 687 692 688 /** @} */689 690 693 #endif /* !VBOX_INCLUDED_vd_ifs_internal_h */ -
trunk/include/VBox/vd-ifs.h
r79794 r81369 41 41 42 42 RT_C_DECLS_BEGIN 43 44 /** @addtogroup grp_vd 45 * @{ */ 43 46 44 47 /** Interface header magic. */ -
trunk/include/VBox/vmm/cpum.h
r81240 r81369 1572 1572 /** @} */ 1573 1573 1574 #if !defined(IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS) && defined(RT_ARCH_AMD64) 1574 #if (!defined(IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS) && defined(RT_ARCH_AMD64)) || defined(DOXYGEN_RUNNING) 1575 /** @name Inlined Guest Getters and predicates Functions. 1576 * @{ */ 1575 1577 1576 1578 /** … … 2515 2517 } 2516 2518 2519 /** @} */ 2517 2520 #endif /* !IPRT_WITHOUT_NAMED_UNIONS_AND_STRUCTS && RT_ARCH_AMD64 */ 2518 2521 2519 /** @} */2520 2522 2521 2523 -
trunk/include/VBox/vmm/cpumctx.h
r80069 r81369 639 639 uint8_t abPadding0[48]; 640 640 } hwvirt; 641 /** @} */642 641 } CPUMCTX; 643 642 #pragma pack() -
trunk/include/VBox/vmm/hm_svm.h
r81245 r81369 1156 1156 } while (0) 1157 1157 1158 /** @def HMSVM_SEG_REG_COPY_ TO_VMCB1158 /** @def HMSVM_SEG_REG_COPY_FROM_VMCB 1159 1159 * Copies the specified segment register from the VMCB to a virtual CPU 1160 1160 * context. -
trunk/include/VBox/vmm/pdmcommon.h
r76585 r81369 90 90 91 91 92 /** PDM Attach/Detach Callback Flags.92 /** @name PDM Attach/Detach Callback Flags. 93 93 * Used by PDMDeviceAttach, PDMDeviceDetach, PDMDriverAttach, PDMDriverDetach, 94 94 * FNPDMDEVATTACH, FNPDMDEVDETACH, FNPDMDRVATTACH, FNPDMDRVDETACH and 95 95 * FNPDMDRVCONSTRUCT. 96 @{ */96 * @{ */ 97 97 /** The attach/detach command is not a hotplug event. */ 98 98 #define PDM_TACH_FLAGS_NOT_HOT_PLUG RT_BIT_32(0) … … 100 100 * This is mostly for internal use. */ 101 101 #define PDM_TACH_FLAGS_NO_CALLBACKS RT_BIT_32(1) 102 /* @} */102 /** @} */ 103 103 104 104 -
trunk/include/VBox/vmm/vmapi.h
r80338 r81369 270 270 typedef VMREQ *PVMREQ; 271 271 272 /** @} */273 274 272 275 273 #ifndef IN_RC -
trunk/include/iprt/asn1.h
r76585 r81369 472 472 /** @name Helper macros for prototyping standard functions for an ASN.1 type. 473 473 * @{ */ 474 474 475 #define RTASN1TYPE_STANDARD_PROTOTYPES_NO_GET_CORE(a_TypeNm, a_DeclMacro, a_ImplExtNm) \ 475 476 a_DeclMacro(int) RT_CONCAT(a_ImplExtNm,_Init)(RT_CONCAT(P,a_TypeNm) pThis, PCRTASN1ALLOCATORVTABLE pAllocator); \ … … 486 487 487 488 488 /** @name Helper macros for prototyping standard functions for an ASN.1 type.489 * @{ */490 489 #define RTASN1TYPE_STANDARD_PROTOTYPES(a_TypeNm, a_DeclMacro, a_ImplExtNm, a_Asn1CoreNm) \ 491 490 DECL_FORCE_INLINE(PRTASN1CORE) RT_CONCAT(a_ImplExtNm,_GetAsn1Core)(RT_CONCAT(PC,a_TypeNm) pThis) \ … … 1378 1377 } while (0) 1379 1378 1380 /** Helpers for comparing optional context tags.1379 /** @name Helpers for comparing optional context tags. 1381 1380 * This will return if both are not present or if their precense differs. 1382 1381 * @{ */ -
trunk/include/iprt/avl.h
r76585 r81369 41 41 42 42 43 /** AVL tree of void pointers.43 /** @name AVL tree of void pointers. 44 44 * @{ 45 45 */ … … 86 86 87 87 88 /** AVL tree of unsigned long.88 /** @name AVL tree of unsigned long. 89 89 * @{ 90 90 */ … … 129 129 130 130 131 /** AVL tree of void pointer ranges.131 /** @name AVL tree of void pointer ranges. 132 132 * @{ 133 133 */ … … 178 178 179 179 180 /** AVL tree of uint32_t180 /** @name AVL tree of uint32_t 181 181 * @{ 182 182 */ … … 219 219 /** @} */ 220 220 221 /** @name AVL tree of uint32_t, offset based 222 * @{ 223 */ 224 221 225 /** 222 226 * AVL uint32_t type for the relative offset pointer scheme. … … 267 271 268 272 269 /** AVL tree of uint32_t, list duplicates.273 /** @name AVL tree of uint32_t, list duplicates. 270 274 * @{ 271 275 */ … … 306 310 307 311 308 /** AVL tree of uint64_t312 /** @name AVL tree of uint64_t 309 313 * @{ 310 314 */ … … 348 352 349 353 350 /** AVL tree of uint64_t ranges.354 /** @name AVL tree of uint64_t ranges. 351 355 * @{ 352 356 */ … … 397 401 398 402 399 /** AVL tree of RTGCPHYSes - using relative offsets internally.403 /** @name AVL tree of RTGCPHYSes - using relative offsets internally. 400 404 * @{ 401 405 */ … … 449 453 450 454 451 /** AVL tree of RTGCPHYS ranges - using relative offsets internally.455 /** @name AVL tree of RTGCPHYS ranges - using relative offsets internally. 452 456 * @{ 453 457 */ … … 507 511 508 512 509 /** AVL tree of RTGCPTRs.513 /** @name AVL tree of RTGCPTRs. 510 514 * @{ 511 515 */ … … 548 552 549 553 550 /** AVL tree of RTGCPTRs - using relative offsets internally.554 /** @name AVL tree of RTGCPTRs - using relative offsets internally. 551 555 * @{ 552 556 */ … … 599 603 600 604 601 /** AVL tree of RTGCPTR ranges.605 /** @name AVL tree of RTGCPTR ranges. 602 606 * @{ 603 607 */ … … 650 654 651 655 652 /** AVL tree of RTGCPTR ranges - using relative offsets internally.656 /** @name AVL tree of RTGCPTR ranges - using relative offsets internally. 653 657 * @{ 654 658 */ … … 707 711 708 712 709 /** AVL tree of RTGCPTR ranges (overlapping supported) - using relative offsets internally. 713 /** @name AVL tree of RTGCPTR ranges (overlapping supported) - using relative 714 * offsets internally. 710 715 * @{ 711 716 */ … … 766 771 767 772 768 /** AVL tree of RTUINTPTR.773 /** @name AVL tree of RTUINTPTR. 769 774 * @{ 770 775 */ … … 815 820 816 821 817 /** AVL tree of RTUINTPTR ranges.822 /** @name AVL tree of RTUINTPTR ranges. 818 823 * @{ 819 824 */ … … 868 873 869 874 870 /** AVL tree of RTHCPHYSes - using relative offsets internally.875 /** @name AVL tree of RTHCPHYSes - using relative offsets internally. 871 876 * @{ 872 877 */ … … 922 927 923 928 924 /** AVL tree of RTIOPORTs - using relative offsets internally.929 /** @name AVL tree of RTIOPORTs - using relative offsets internally. 925 930 * @{ 926 931 */ … … 972 977 973 978 974 /** AVL tree of RTIOPORT ranges - using relative offsets internally.979 /** @name AVL tree of RTIOPORT ranges - using relative offsets internally. 975 980 * @{ 976 981 */ … … 1024 1029 1025 1030 1026 /** AVL tree of RTHCPHYSes.1031 /** @name AVL tree of RTHCPHYSes. 1027 1032 * @{ 1028 1033 */ … … 1073 1078 /** @} */ 1074 1079 1075 /** AVL tree of RTGCPHYSes.1080 /** @name AVL tree of RTGCPHYSes. 1076 1081 * @{ 1077 1082 */ … … 1123 1128 1124 1129 1125 /** AVL tree of RTFOFF ranges.1130 /** @name AVL tree of RTFOFF ranges. 1126 1131 * @{ 1127 1132 */ -
trunk/include/iprt/cdefs.h
r80535 r81369 245 245 246 246 247 /** @def __X86__247 /** @def \__X86__ 248 248 * Indicates that we're compiling for the X86 architecture. 249 249 * @deprecated 250 250 */ 251 251 252 /** @def __AMD64__252 /** @def \__AMD64__ 253 253 * Indicates that we're compiling for the AMD64 architecture. 254 254 * @deprecated … … 3724 3724 3725 3725 3726 /** @def __PRETTY_FUNCTION__3726 /** @def \__PRETTY_FUNCTION__ 3727 3727 * With GNU C we'd like to use the builtin __PRETTY_FUNCTION__, so define that 3728 3728 * for the other compilers. -
trunk/include/iprt/err.h
r81062 r81369 1275 1275 /** Found a ZIP64 Extra Information Field in a ZIP32 file. */ 1276 1276 #define VERR_PKZIP_ZIP64EX_IN_ZIP32 (-965) 1277 1277 /** @} */ 1278 1278 1279 1279 /** @name RTZip status codes … … 2192 2192 /** Negative exponent makes no sense to integer math. */ 2193 2193 #define VERR_BIGNUM_NEGATIVE_EXPONENT (-24002) 2194 2195 2194 /** @} */ 2196 2195 … … 2493 2492 * we reached the ned of the boot catalog secotr. */ 2494 2493 #define VERR_ISOMK_IMPORT_BOOT_CAT_ENTRY_CONTINUATION_EOS (-25157) 2495 2496 2494 /** @} */ 2497 2495 -
trunk/include/iprt/formats/hfs.h
r76585 r81369 216 216 /** @} */ 217 217 218 /** @name B-tree compare types (BTHeaderRec::keyCompareType) */ 218 /** @name B-tree compare types (BTHeaderRec::keyCompareType) 219 * @{ */ 219 220 #define kHFSCaseFolding UINT8_C(0xcf) 220 221 #define kHFSBinaryCompare UINT8_C(0xbc) -
trunk/include/iprt/formats/lx.h
r76585 r81369 40 40 RT_C_DECLS_BEGIN 41 41 42 /** @defgroup grp_rt_formats_lx LX executable format (OS/2) 43 * @ingroup grp_rt_formats 44 * @{ */ 45 42 46 #ifndef IMAGE_OS2_SIGNATURE_LX 43 47 /** LX signature ("LX") */ 44 48 # define IMAGE_LX_SIGNATURE K_LE2H_U16('L' | ('X' << 8)) 45 49 #endif 46 47 50 48 51 /** … … 202 205 203 206 204 /** @ nameRelocations (aka Fixups).207 /** @defgroup grp_rt_formats_lx_relocs Relocations (aka Fixups). 205 208 * @{ */ 206 209 typedef union r32_offset … … 241 244 #pragma pack() 242 245 AssertCompileSize(r32_rlc, 16); 246 /** @} */ 243 247 244 248 /** @name Some attempt at size constanstants. … … 287 291 288 292 289 /** @ nameThe Object Table (aka segment table)293 /** @defgroup grp_rt_formats_lx_object_tab The Object Table (aka segment table) 290 294 * @{ */ 291 295 … … 417 421 418 422 419 /** @ nameThe Entry Table (aka Export Table)423 /** @defgroup grp_rt_formats_lx_entry_tab The Entry Table (aka Export Table) 420 424 * @{ */ 421 425 … … 500 504 /** @} */ 501 505 502 506 /** @} */ 503 507 RT_C_DECLS_END 504 508 -
trunk/include/iprt/formats/pecoff.h
r76585 r81369 1509 1509 1510 1510 /** @name WIN_CERT_REVISION_XXX - Certificate data directory revision. 1511 * Used WIN_CERTIFICATE::wRevision found in the 1512 * IMAGE_DIRECTORY_ENTRY_SECURITY data directory. */ 1511 * Used WIN_CERTIFICATE::wRevision found in the IMAGE_DIRECTORY_ENTRY_SECURITY 1512 * data directory. 1513 * @{ */ 1513 1514 #define WIN_CERT_REVISION_1_0 UINT16_C(0x0100) 1514 1515 #define WIN_CERT_REVISION_2_0 UINT16_C(0x0200) -
trunk/include/iprt/http.h
r78659 r81369 277 277 * @param pszUrl The proxy URL (libproxy style): 278 278 * 279 * [{type}"://"][{userid}[ @{password}]:]{server}[":"{port}]279 * [{type}"://"][{userid}[\@{password}]:]{server}[":"{port}] 280 280 * 281 281 * Valid proxy types are: http (default), https, socks4, socks4a, … … 568 568 RTR3DECL(int) RTHttpSetDownloadCallback(RTHTTP hHttp, uint32_t fFlags, PFNRTHTTPDOWNLOADCALLBACK pfnCallback, void *pvUser); 569 569 570 /** @name RTHTTPDOWNLOAD_F_XXX */ 570 /** @name RTHTTPDOWNLOAD_F_XXX 571 * @{ */ 571 572 /** The lower 10 bits gives the HTTP status required by the callback. 572 573 * For all other status codes, any body data will be returned via the -
trunk/include/iprt/latin1.h
r76585 r81369 391 391 RT_C_DECLS_END 392 392 393 /** @} */394 395 393 #endif /* !IPRT_INCLUDED_latin1_h */ 396 394 -
trunk/include/iprt/list-off32.h
r76585 r81369 32 32 #include <iprt/types.h> 33 33 34 /* @defgroup grp_rt_list_off32 RTListOff32 - Generic Doubly Linked List based on 32-bit offset.34 /** @defgroup grp_rt_list_off32 RTListOff32 - Generic Doubly Linked List based on 32-bit offset. 35 35 * @ingroup grp_rt 36 36 * 37 * This is the same as @link grp_rt_list, except that instead of pointers we37 * This is the same as @link{grp_rt_list}, except that instead of pointers we 38 38 * use 32-bit offsets. The list implementation is circular, with a dummy node 39 39 * as anchor. Be careful with the dummy node when walking the list. … … 498 498 } 499 499 500 /** @} */ 500 501 RT_C_DECLS_END 501 502 502 /** @} */503 504 503 #endif /* !IPRT_INCLUDED_list_off32_h */ 505 504 -
trunk/include/iprt/log.h
r79949 r81369 1227 1227 1228 1228 1229 /** @ nameRelease Logging1229 /** @defgroup grp_rt_log_rel Release Logging 1230 1230 * @{ 1231 1231 */ … … 1800 1800 1801 1801 /** @name COM port logging 1802 * {1802 * @{ 1803 1803 */ 1804 1804 -
trunk/include/iprt/param.h
r76585 r81369 128 128 /** @} */ 129 129 130 131 /** @} */132 133 130 #endif /* !IPRT_INCLUDED_param_h */ 134 131 -
trunk/include/iprt/shmem.h
r78561 r81369 36 36 /** @defgroup grp_rt_shmem RTShMem - Shared memory. 37 37 * @ingroup grp_rt 38 * @{ 38 39 */ 39 40 -
trunk/include/iprt/types.h
r81096 r81369 1772 1772 #define NIL_RTGCPTR64 ((RTGCPTR64)0) 1773 1773 1774 /** Guest context pointer. 1775 * Keep in mind that this type is an unsigned integer in 1776 * HC and void pointer in GC. 1777 */ 1778 #if GC_ARCH_BITS == 64 1774 /** @typedef RTGCPTR 1775 * Guest context pointer. 1776 * Keep in mind that this type is an unsigned integer in HC and void pointer in GC. */ 1777 /** @typedef PRTGCPTR 1778 * Pointer to a guest context pointer. */ 1779 /** @typedef PCRTGCPTR 1780 * Pointer to a const guest context pointer. */ 1781 /** @def NIL_RTGCPTR 1782 * NIL GC pointer. */ 1783 /** @def RTGCPTR_MAX 1784 * Max RTGCPTR value. */ 1785 #if GC_ARCH_BITS == 64 || defined(DOXYGEN_RUNNING) 1779 1786 typedef RTGCPTR64 RTGCPTR; 1780 /** Pointer to a guest context pointer. */1781 1787 typedef PRTGCPTR64 PRTGCPTR; 1782 /** Pointer to a const guest context pointer. */1783 1788 typedef PCRTGCPTR64 PCRTGCPTR; 1784 /** @def NIL_RTGCPTR 1785 * NIL GC pointer. 1786 */ 1787 # define NIL_RTGCPTR NIL_RTGCPTR64 1788 /** Max RTGCPTR value. */ 1789 # define NIL_RTGCPTR NIL_RTGCPTR64 1789 1790 # define RTGCPTR_MAX UINT64_MAX 1790 1791 #elif GC_ARCH_BITS == 32 1791 1792 typedef RTGCPTR32 RTGCPTR; 1792 /** Pointer to a guest context pointer. */1793 1793 typedef PRTGCPTR32 PRTGCPTR; 1794 /** Pointer to a const guest context pointer. */1795 1794 typedef PCRTGCPTR32 PCRTGCPTR; 1796 /** @def NIL_RTGCPTR1797 * NIL GC pointer.1798 */1799 1795 # define NIL_RTGCPTR NIL_RTGCPTR32 1800 /** Max RTGCPTR value. */1801 1796 # define RTGCPTR_MAX UINT32_MAX 1802 1797 #else … … 1848 1843 /** Pointer to a const raw mode context pointer. */ 1849 1844 typedef const RTRCPTR RT_FAR *PCRTRCPTR; 1850 /** @def NIL_RTGCPTR 1851 * NIL RC pointer. 1852 */ 1845 /** @def NIL_RTRCPTR 1846 * NIL RC pointer. */ 1853 1847 #ifndef IN_RC 1854 1848 # define NIL_RTRCPTR ((RTRCPTR)0) -
trunk/include/iprt/utf16.h
r76585 r81369 1383 1383 1384 1384 /** @} */ 1385 1386 1387 1385 RT_C_DECLS_END 1388 1386 1389 /** @} */1390 1391 1387 #endif /* !IPRT_INCLUDED_utf16_h */ 1392 1388 -
trunk/include/iprt/vfs.h
r80585 r81369 182 182 183 183 184 /** @defgroup grp_ vfs_objVFS Base Object API184 /** @defgroup grp_rt_vfs_obj VFS Base Object API 185 185 * @{ 186 186 */ … … 442 442 443 443 444 /** @defgroup grp_ vfs_fsstreamVFS Filesystem Stream API444 /** @defgroup grp_rt_vfs_fsstream VFS Filesystem Stream API 445 445 * 446 446 * Filesystem streams are for tar, cpio and similar. Any virtual filesystem can … … 567 567 568 568 569 /** @defgroup grp_ vfs_dirVFS Directory API569 /** @defgroup grp_rt_vfs_dir VFS Directory API 570 570 * @{ 571 571 */ … … 758 758 759 759 760 /** @defgroup grp_ vfs_symlinkVFS Symbolic Link API760 /** @defgroup grp_rt_vfs_symlink VFS Symbolic Link API 761 761 * 762 762 * @remarks The TAR VFS and filesystem stream uses symbolic links for … … 861 861 862 862 863 /** @defgroup grp_ vfs_iostreamVFS I/O Stream API863 /** @defgroup grp_rt_vfs_iostream VFS I/O Stream API 864 864 * @{ 865 865 */ … … 1210 1210 1211 1211 1212 /** @defgroup grp_ vfs_fileVFS File API1212 /** @defgroup grp_rt_vfs_file VFS File API 1213 1213 * @{ 1214 1214 */ … … 1467 1467 #define RTVFSFILE_SIZE_F_IS_VALID(a_fFlags) \ 1468 1468 ( !((a_fFlags) & ~RTVFSFILE_SIZE_F_ACTION_MASK) && ((a_fFlags) & RTVFSFILE_SIZE_F_ACTION_MASK) != 0 ) 1469 /** @} */1470 1471 1472 1469 /** Mask of valid flags. */ 1473 1470 #define RTFILE_ALLOC_SIZE_F_VALID (RTFILE_ALLOC_SIZE_F_KEEP_SIZE) … … 1507 1504 1508 1505 1509 /** @defgroup grp_ vfs_miscVFS Miscellaneous1506 /** @defgroup grp_rt_vfs_misc VFS Miscellaneous 1510 1507 * @{ 1511 1508 */ -
trunk/include/iprt/vfslowlevel.h
r80585 r81369 553 553 * that sockets should not be opened. 554 554 * @retval VERR_IS_A_BLOCK_DEVICE if @a pszEntry is a block device but 555 * @a fFlags indicates that block devices should not be opened. 556 * @retval VERR_IS_A_BLOCK_DEVICE if @a pszEntry is a character device but 557 * @a fFlags indicates that character devices should not be opened. 555 * @a fFlags indicates that block devices should not be opened, or vice 556 * versa. 558 557 * 559 558 * @param pvThis The implementation specific directory data. -
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/VBoxDispDriverDDraw.cpp
r80748 r81369 27 27 28 28 pHalInfo->vmiData.fpPrimary = pDev->layout.offFramebuffer; 29 /*pHalInfo->vmiData.dwFlags /*unused*/29 /*pHalInfo->vmiData.dwFlags - unused*/ 30 30 pHalInfo->vmiData.dwDisplayWidth = pDev->mode.ulWidth; 31 31 pHalInfo->vmiData.dwDisplayHeight = pDev->mode.ulHeight; -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxClipboard.cpp
r81223 r81369 1157 1157 1158 1158 /* Disconnect from the host service. 1159 /* This will also send a VBOX_SHCL_HOST_MSG_QUIT from the host so that we can break out from our message worker. */1159 * This will also send a VBOX_SHCL_HOST_MSG_QUIT from the host so that we can break out from our message worker. */ 1160 1160 VbglR3ClipboardDisconnect(pCtx->CmdCtx.uClientID); 1161 1161 pCtx->CmdCtx.uClientID = 0; -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxSeamless.cpp
r79183 r81369 242 242 rectVisible = rectWindow; 243 243 244 /* Filter out Windows XP shadow windows 244 /* Filter out Windows XP shadow windows */ 245 245 /** @todo still shows inside the guest */ 246 246 if ( szWindowText[0] == 0 && -
trunk/src/VBox/Additions/x11/VBoxClient/clipboard.cpp
r81178 r81369 81 81 * @param pCtx Our context information 82 82 * @param u32Format The format of the data being requested 83 * @ retvalppv On success and if pcb > 0, this will point to a buffer83 * @param ppv On success and if pcb > 0, this will point to a buffer 84 84 * to be freed with RTMemFree containing the data read. 85 * @ retvalpcb On success, this contains the number of bytes of data85 * @param pcb On success, this contains the number of bytes of data 86 86 * returned 87 87 */ -
trunk/src/VBox/Debugger/DBGPlugInCommonELF.h
r76564 r81369 36 36 /** Valid bit mask. */ 37 37 #define DBG_DIGGER_ELF_MASK UINT32_C(0x00000003) 38 /* @} */38 /** @} */ 39 39 40 40 int DBGDiggerCommonParseElf32Mod(PUVM pUVM, const char *pszModName, const char *pszFilename, uint32_t fFlags, -
trunk/src/VBox/Debugger/DBGPlugInOS2.cpp
r76784 r81369 33 33 * Structures and Typedefs * 34 34 *********************************************************************************************************************************/ 35 36 /** @name Internal OS/2 structures */37 38 /** @} */39 40 35 41 36 typedef enum DBGDIGGEROS2VER -
trunk/src/VBox/Devices/PC/DevACPI.cpp
r81031 r81369 1891 1891 1892 1892 /** 1893 * @ {FNIOMIOPORTOUT, ACPI_RESET_BLK}1893 * @callback_method_impl{FNIOMIOPORTOUT, ACPI_RESET_BLK} 1894 1894 */ 1895 1895 PDMBOTHCBDECL(int) acpiR3ResetWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb) -
trunk/src/VBox/Devices/Serial/DevOxPcie958.cpp
r81031 r81369 40 40 41 41 /** @name PCI device related constants. 42 * @ }*/42 * @{ */ 43 43 /** The PCI device ID. */ 44 44 #define OX958_PCI_DEVICE_ID 0xc308 -
trunk/src/VBox/Devices/Storage/DevVirtioSCSI.cpp
r81368 r81369 59 59 60 60 #define LUN0 0 61 /** 62 * @name VirtIO 1.0 SCSI Host feature bits (See VirtIO 1.0 specification, Section 5.6.3) 61 /** @name VirtIO 1.0 SCSI Host feature bits (See VirtIO 1.0 specification, Section 5.6.3) 63 62 * @{ */ 64 63 #define VIRTIO_SCSI_F_INOUT RT_BIT_64(0) /** Request is device readable AND writeable */ … … 199 198 } VIRTIOSCSI_CONFIG_T, PVIRTIOSCSI_CONFIG_T; 200 199 201 /** 202 * @name VirtIO 1.0 SCSI Host Device device specific control types 200 /** @name VirtIO 1.0 SCSI Host Device device specific control types 203 201 * @{ */ 204 202 #define VIRTIOSCSI_T_NO_EVENT 0 … … 219 217 } VIRTIOSCSI_EVENT_T, *PVIRTIOSCSI_EVENT_T; 220 218 221 /** 222 * @name VirtIO 1.0 SCSI Host Device device specific event types 219 /** @name VirtIO 1.0 SCSI Host Device device specific event types 223 220 * @{ */ 224 221 #define VIRTIOSCSI_EVT_RESET_HARD 0 /**< */ … … 278 275 #pragma pack() 279 276 280 /** 281 * @name VirtIO 1.0 SCSI Host Device Req command-specific response values 277 /** @name VirtIO 1.0 SCSI Host Device Req command-specific response values 282 278 * @{ */ 283 279 #define VIRTIOSCSI_S_OK 0 /**< control, command */ … … 294 290 /** @} */ 295 291 296 /** 297 * @name VirtIO 1.0 SCSI Host Device command-specific task_attr values 292 /** @name VirtIO 1.0 SCSI Host Device command-specific task_attr values 298 293 * @{ */ 299 294 #define VIRTIOSCSI_S_SIMPLE 0 /**< */ … … 304 299 305 300 /** 306 * @nameVirtIO 1.0 SCSI Host Device Control command before we know type (5.6.6.2)307 * @{ */301 * VirtIO 1.0 SCSI Host Device Control command before we know type (5.6.6.2) 302 */ 308 303 typedef struct virtio_scsi_ctrl 309 304 { … … 311 306 } VIRTIOSCSI_CTRL_T, *PVIRTIOSCSI_CTRL_T; 312 307 313 /** 314 * @name VirtIO 1.0 SCSI Host Device command-specific TMF values 308 /** @name VirtIO 1.0 SCSI Host Device command-specific TMF values 315 309 * @{ */ 316 310 #define VIRTIOSCSI_T_TMF 0 /**< */ … … 323 317 #define VIRTIOSCSI_T_TMF_QUERY_TASK 6 /**< */ 324 318 #define VIRTIOSCSI_T_TMF_QUERY_TASK_SET 7 /**< */ 325 /** *@} */319 /** @} */ 326 320 327 321 #pragma pack(1) … … 338 332 #pragma pack() 339 333 340 /** 341 * @name VirtIO 1.0 SCSI Host Device device specific tmf control response values 334 /** @name VirtIO 1.0 SCSI Host Device device specific tmf control response values 342 335 * @{ */ 343 336 #define VIRTIOSCSI_S_FUNCTION_COMPLETE 0 /**< */ … … 369 362 } VIRTIO_SCSI_CTRL_UNION_T, *PVIRTIO_SCSI_CTRL_UNION_T; 370 363 371 /** 372 * @name VirtIO 1.0 SCSI Host Device device specific tmf control response values 364 /** @name VirtIO 1.0 SCSI Host Device device specific tmf control response values 373 365 * @{ */ 374 366 #define VIRTIOSCSI_EVT_ASYNC_OPERATIONAL_CHANGE 2 /**< */ -
trunk/src/VBox/Devices/USB/VUSBInternal.h
r77000 r81369 45 45 46 46 47 /** @name Internal Device Operations, Structures and Constants. 47 /** @defgroup grp_vusb_int VUSB Internals. 48 * @ingroup grp_vusb 49 * @internal 50 * @{ 51 */ 52 53 /** @defgroup grp_vusb_int_dev Internal Device Operations, Structures and Constants. 48 54 * @{ 49 55 */ … … 309 315 310 316 311 /** @ nameInternal Hub Operations, Structures and Constants.317 /** @defgroup grp_vusb_int_hub Internal Hub Operations, Structures and Constants. 312 318 * @{ 313 319 */ … … 345 351 346 352 347 /** @ nameInternal Root Hub Operations, Structures and Constants.353 /** @defgroup grp_vusb_int_roothub Internal Root Hub Operations, Structures and Constants. 348 354 * @{ 349 355 */ … … 497 503 } CANCELMODE; 498 504 499 /* @} */500 501 502 503 /** @ nameInternal URB Operations, Structures and Constants.505 /** @} */ 506 507 508 509 /** @defgroup grp_vusb_int_urb Internal URB Operations, Structures and Constants. 504 510 * @{ */ 505 511 int vusbUrbSubmit(PVUSBURB pUrb); … … 740 746 extern const char * const g_apszCtlStates[4]; 741 747 748 /** @} */ 742 749 RT_C_DECLS_END 743 750 #endif /* !VBOX_INCLUDED_SRC_USB_VUSBInternal_h */ -
trunk/src/VBox/HostDrivers/Support/SUPDrvIDC.h
r76568 r81369 40 40 * @remarks We can take a slightly more relaxed attitude wrt to size encoding 41 41 * here since only windows will use standard I/O control function code. 42 */ 42 * 43 * @{ 44 */ 45 43 46 #ifdef RT_OS_WINDOWS 44 47 # define SUP_IDC_CODE(Function) CTL_CODE(FILE_DEVICE_UNKNOWN, (Function) + 2542, METHOD_BUFFERED, FILE_WRITE_ACCESS) … … 48 51 49 52 50 /*******************************************************************************51 * Structures and Typedefs *52 *******************************************************************************/53 53 #ifdef RT_ARCH_AMD64 54 54 # pragma pack(8) /* paranoia. */ -
trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h
r81106 r81369 1636 1636 * This queries a lot more information than merely VT-x/AMD-V basic capabilities 1637 1637 * provided by SUP_IOCTL_VT_CAPS. 1638 * 1639 * @{ 1638 1640 */ 1639 1641 #define SUP_IOCTL_GET_HWVIRT_MSRS SUP_CTL_CODE_SIZE(41, SUP_IOCTL_GET_HWVIRT_MSRS_SIZE) -
trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h
r76568 r81369 68 68 * Whether we're employing set-user-ID-on-execute in the hardening. 69 69 */ 70 #if !defined(RT_OS_OS2) && !defined(RT_OS_WINDOWS) && !defined(RT_OS_L4)70 #if (!defined(RT_OS_OS2) && !defined(RT_OS_WINDOWS) && !defined(RT_OS_L4)) || defined(DOXYGEN_RUNNING) 71 71 # define SUP_HARDENED_SUID 72 72 #else -
trunk/src/VBox/HostDrivers/Support/SUPLibLdr.cpp
r76553 r81369 23 23 * You may elect to license modified versions of this file under the 24 24 * terms and conditions of either the GPL or the CDDL or both. 25 */26 27 /** @page pg_sup SUP - The Support Library28 *29 * The support library is responsible for providing facilities to load30 * VMM Host Ring-0 code, to call Host VMM Ring-0 code from Ring-3 Host31 * code, to pin down physical memory, and more.32 *33 * The VMM Host Ring-0 code can be combined in the support driver if34 * permitted by kernel module license policies. If it is not combined35 * it will be externalized in a .r0 module that will be loaded using36 * the IPRT loader.37 *38 * The Ring-0 calling is done thru a generic SUP interface which will39 * transfer an argument set and call a predefined entry point in the Host40 * VMM Ring-0 code.41 *42 * See @ref grp_sup "SUP - Support APIs" for API details.43 25 */ 44 26 -
trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp
r80216 r81369 459 459 * Defined Constants And Macros * 460 460 *********************************************************************************************************************************/ 461 /** @def SUP_HARDENED_SUID 462 * Whether we're employing set-user-ID-on-execute in the hardening. 463 */ 461 /* This mess is temporary after eliminating a define duplicated in SUPLibInternal.h. */ 464 462 #if !defined(RT_OS_OS2) && !defined(RT_OS_WINDOWS) && !defined(RT_OS_L4) 465 # define SUP_HARDENED_SUID 463 # ifndef SUP_HARDENED_SUID 464 # error "SUP_HARDENED_SUID is NOT defined?!?" 465 # endif 466 466 #else 467 # undef SUP_HARDENED_SUID 467 # ifdef SUP_HARDENED_SUID 468 # error "SUP_HARDENED_SUID is defined?!?" 469 # endif 468 470 #endif 469 471 -
trunk/src/VBox/HostDrivers/Support/win/SUPDrv-win.cpp
r81161 r81369 2688 2688 2689 2689 2690 /**2691 * Alternative version of SUPR0Printf for Windows.2692 *2693 * @returns 0.2694 * @param pszFormat The format string.2695 */2696 2690 SUPR0DECL(int) SUPR0Printf(const char *pszFormat, ...) 2697 2691 { -
trunk/src/VBox/HostServices/DragAndDrop/VBoxDragAndDropSvc.cpp
r76964 r81369 16 16 */ 17 17 18 /** @page pg_svc_ guest_controlDrag and drop HGCM Service18 /** @page pg_svc_dnd Drag and drop HGCM Service 19 19 * 20 20 * TODO -
trunk/src/VBox/HostServices/SharedFolders/vbsf.cpp
r78947 r81369 326 326 * @param fMode file attributes 327 327 * @param handleInitial initial handle 328 * @ retval pfOpeniprt create flags328 * @param pfOpen Where to return iprt create flags 329 329 */ 330 330 static int vbsfConvertFileOpenFlags(bool fWritable, unsigned fShflFlags, RTFMODE fMode, SHFLHANDLE handleInitial, uint64_t *pfOpen) … … 556 556 * 557 557 * @returns IPRT status code 558 * @param pClient Data structure describing the client accessing the shared folder 559 * @param root The index of the shared folder in the table of mappings. 560 * @param pszPath Path to the file or folder on the host. 561 * @param pParms @a CreateFlags Creation or open parameters, see include/VBox/shflsvc.h 562 * @param pParms @a Info When a new file is created this specifies the initial parameters. 563 * When a file is created or overwritten, it also specifies the 564 * initial size. 565 * @retval pParms @a Resulte Shared folder status code, see include/VBox/shflsvc.h 566 * @retval pParms @a Handle On success the (shared folder) handle of the file opened or 567 * created 568 * @retval pParms @a Info On success the parameters of the file opened or created 558 * @param pClient Data structure describing the client accessing the shared folder 559 * @param root The index of the shared folder in the table of mappings. 560 * @param pszPath Path to the file or folder on the host. 561 * @param pParms Input: 562 * - @a CreateFlags: Creation or open parameters, see include/VBox/shflsvc.h 563 * - @a Info: When a new file is created this specifies the initial parameters. 564 * When a file is created or overwritten, it also specifies the 565 * initial size. 566 * Output: 567 * - @a Result: Shared folder status code, see include/VBox/shflsvc.h 568 * - @a Handle: On success the (shared folder) handle of the file opened or 569 * created 570 * - @a Info: On success the parameters of the file opened or created 569 571 */ 570 572 static int vbsfOpenFile(SHFLCLIENTDATA *pClient, SHFLROOT root, char *pszPath, SHFLCREATEPARMS *pParms) … … 764 766 * 765 767 * @returns IPRT status code 766 * @param pClient Data structure describing the client accessing the shared folder 767 * @param root The index of the shared folder in the table of mappings. 768 * @param pszPath Path to the file or folder on the host. 769 * @param pParms @a CreateFlags Creation or open parameters, see include/VBox/shflsvc.h 770 * @retval pParms @a Result Shared folder status code, see include/VBox/shflsvc.h 771 * @retval pParms @a Handle On success the (shared folder) handle of the folder opened or 772 * created 773 * @retval pParms @a Info On success the parameters of the folder opened or created 768 * @param pClient Data structure describing the client accessing the shared 769 * folder 770 * @param root The index of the shared folder in the table of mappings. 771 * @param pszPath Path to the file or folder on the host. 772 * @param pParms Input: @a CreateFlags Creation or open parameters, see 773 * include/VBox/shflsvc.h 774 * Output: 775 * - @a Result: Shared folder status code, see include/VBox/shflsvc.h 776 * - @a Handle: On success the (shared folder) handle of the folder opened or 777 * created 778 * - @a Info: On success the parameters of the folder opened or created 774 779 * 775 780 * @note folders are created with fMode = 0777 … … 949 954 * @param pClient client data 950 955 * @param pszPath The path of the file to be looked up 951 * @retval pParms->Result Status of the operation (success or error) 952 * @retval pParms->Info On success, information returned about the file 956 * @param pParms Output: 957 * - @a Result: Status of the operation (success or error) 958 * - @a Info: On success, information returned about the 959 * file 953 960 */ 954 961 static int vbsfLookupFile(SHFLCLIENTDATA *pClient, char *pszPath, SHFLCREATEPARMS *pParms) … … 1012 1019 * 1013 1020 * @returns IPRT status code, but see note below 1014 * @param pClient Data structure describing the client accessing the shared 1015 * folder 1016 * @param root The index of the shared folder in the table of mappings. 1017 * The host path of the shared folder is found using this. 1018 * @param pPath The path of the file or folder relative to the host path 1019 * indexed by root. 1020 * @param cbPath Presumably the length of the path in pPath. Actually 1021 * ignored, as pPath contains a length parameter. 1022 * @param pParms @a Info If a new file is created or an old one overwritten, set 1023 * these attributes 1024 * @retval pParms @a Result Shared folder result code, see include/VBox/shflsvc.h 1025 * @retval pParms @a Handle Shared folder handle to the newly opened file 1026 * @retval pParms @a Info Attributes of the file or folder opened 1021 * @param pClient Data structure describing the client accessing the 1022 * shared folder 1023 * @param root The index of the shared folder in the table of mappings. 1024 * The host path of the shared folder is found using this. 1025 * @param pPath The path of the file or folder relative to the host path 1026 * indexed by root. 1027 * @param cbPath Presumably the length of the path in pPath. Actually 1028 * ignored, as pPath contains a length parameter. 1029 * @param pParms Input: If a new file is created or an old one 1030 * overwritten, set the @a Info attribute. 1031 * 1032 * Output: 1033 * - @a Result Shared folder result code, see include/VBox/shflsvc.h 1034 * - @a Handle Shared folder handle to the newly opened file 1035 * - @a Info Attributes of the file or folder opened 1027 1036 * 1028 1037 * @note This function returns success if a "non-exceptional" error occurred, -
trunk/src/VBox/HostServices/SharedFolders/vbsf.h
r78467 r81369 25 25 #include <VBox/shflsvc.h> 26 26 27 int vbsfCreate 27 int vbsfCreate(SHFLCLIENTDATA *pClient, SHFLROOT root, SHFLSTRING *pPath, uint32_t cbPath, SHFLCREATEPARMS *pParms); 28 28 29 int vbsfClose 29 int vbsfClose(SHFLCLIENTDATA *pClient, SHFLROOT root, SHFLHANDLE Handle); 30 30 31 31 int vbsfRead(SHFLCLIENTDATA *pClient, SHFLROOT root, SHFLHANDLE Handle, uint64_t offset, uint32_t *pcbBuffer, uint8_t *pBuffer); -
trunk/src/VBox/HostServices/SharedFolders/vbsfpathabs.cpp
r78114 r81369 98 98 #if defined(RT_OS_WINDOWS) 99 99 /** @todo This code is not needed in 6.0 and later as IPRT translates paths 100 * to \\.\format if they're too long. */100 * to //./ (inverted slashes for doxygen) format if they're too long. */ 101 101 const char *pszPathStart = pszRoot? pszRoot: pszPath; 102 102 -
trunk/src/VBox/Main/include/ApplianceImpl.h
r78923 r81369 27 27 #include "MediumFormatImpl.h" 28 28 29 /* Todo:This file needs massive cleanup. Split IAppliance in a public and29 /** @todo This file needs massive cleanup. Split IAppliance in a public and 30 30 * private classes. */ 31 31 #include <iprt/tar.h> … … 177 177 178 178 /** @name Import stuff 179 * @ }179 * @{ 180 180 */ 181 181 HRESULT i_importImpl(const LocationInfo &aLocInfo, ComObjPtr<Progress> &aProgress); -
trunk/src/VBox/Main/include/GuestFsObjInfoImpl.h
r76562 r81369 40 40 /** @} */ 41 41 42 /** @name Internal access helpers. */ 42 /** @name Internal access helpers. 43 * @{ */ 43 44 const GuestFsObjData &i_getData() const { return mData; } 44 45 /** @} */ -
trunk/src/VBox/Main/include/vector.h
r76562 r81369 335 335 336 336 /** 337 * Iterates over a vector. 338 * 337 339 * Iterates over the vector elements from first to last and execute the 338 340 * following instruction or block on each iteration with @a pIterator set to 339 341 * point to the current element (that is, a pointer to the pointer element for 340 342 * a vector-of-pointers). Use in the same way as a "for" statement. 341 * @param pvec pointer to the vector to be iterated over 342 * @param type the type of the vector, must match the type specified at 343 * vector initialisation (including whitespace etc) 343 * 344 * @param pvec Pointer to the vector to be iterated over. 345 * @param type The type of the vector, must match the type specified at 346 * vector initialisation (including whitespace etc). 347 * @param pIterator A pointer to @a type which will be set to point to the 348 * current vector element on each iteration. 349 * 344 350 * @todo can we assert the correctness of the type in some way? 345 * @param pIterator a pointer to @a type which will be set to point to the346 * current vector element on each iteration347 351 */ 348 352 #define VEC_FOR_EACH(pvec, type, pIterator) \ -
trunk/src/VBox/Main/src-client/KeyboardImpl.cpp
r81246 r81369 37 37 //////////////////////////////////////////////////////////////////////////////// 38 38 39 /** @name Keyboard device capabilities bitfield 40 * @{ */ 39 /** 40 * Keyboard device capabilities bitfield. 41 */ 41 42 enum 42 43 { -
trunk/src/VBox/Main/src-server/HostDnsService.cpp
r79795 r81369 37 37 38 38 static void dumpHostDnsInformation(const HostDnsInformation&); 39 static void dumpHostDnsStrVector(const std::string &, const std::vector<std::string>&);39 static void dumpHostDnsStrVector(const std::string &prefix, const std::vector<std::string> &v); 40 40 41 41 … … 409 409 } 410 410 411 static void dumpHostDnsInformation(const HostDnsInformation &info)411 static void dumpHostDnsInformation(const HostDnsInformation &info) 412 412 { 413 413 dumpHostDnsStrVector("server", info.servers); … … 422 422 423 423 424 static void dumpHostDnsStrVector(const std::string & prefix, const std::vector<std::string>&v)424 static void dumpHostDnsStrVector(const std::string &prefix, const std::vector<std::string> &v) 425 425 { 426 426 int i = 1; -
trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp
r80862 r81369 2803 2803 * If a failure happens anywhere before the user function would be normally 2804 2804 * called, it will be called anyway in special "cleanup only" mode indicated 2805 * by \a aClient, \a aProgress and \a Vrc arguments set to NULL. In this mode,2805 * by \a aClient, \a aProgress and \a aVrc arguments set to NULL. In this mode, 2806 2806 * all the function is supposed to do is to cleanup its aUser argument if 2807 2807 * necessary (it's assumed that the ownership of this argument is passed to -
trunk/src/VBox/VMM/VMMAll/IOMAllMmioNew.cpp
r81363 r81369 55 55 /** @def IOM_MMIO_STATS_COMMA_ARG 56 56 * Statistics entry pointer argument. */ 57 #if def VBOX_WITH_STATISTICS57 #if defined(VBOX_WITH_STATISTICS) || defined(DOXYGEN_RUNNING) 58 58 # define IOM_MMIO_STATS_COMMA_DECL , PIOMMMIOSTATSENTRY pStats 59 59 # define IOM_MMIO_STATS_COMMA_ARG , pStats … … 131 131 * @param pvValue Where to store the value. 132 132 * @param cbValue The size of the value to write. 133 * @param pStats Pointer to the statistics (never NULL). 133 134 */ 134 135 static VBOXSTRICTRC iomMmioDoComplicatedWrite(PVM pVM, PVMCPU pVCpu, CTX_SUFF(PIOMMMIOENTRY) pRegEntry, … … 372 373 * @param pvValue Where to store the value. 373 374 * @param cbValue The size of the value to read. 375 * @param pStats Pointer to the statistics (never NULL). 374 376 */ 375 377 static VBOXSTRICTRC iomMMIODoComplicatedRead(PVM pVM, CTX_SUFF(PIOMMMIOENTRY) pRegEntry, RTGCPHYS GCPhys, RTGCPHYS offRegion, … … 497 499 * 498 500 * @returns VINF_SUCCESS. 499 * @param pvValue Where to store the zeros. 500 * @param cbValue How many bytes to read. 501 * @param pvValue Where to store the zeros. 502 * @param cbValue How many bytes to read. 503 * @param pStats Pointer to the statistics (never NULL). 501 504 */ 502 505 static int iomMMIODoReadFFs(void *pvValue, size_t cbValue IOM_MMIO_STATS_COMMA_DECL) … … 525 528 * 526 529 * @returns VINF_SUCCESS. 527 * @param pvValue Where to store the zeros. 528 * @param cbValue How many bytes to read. 530 * @param pvValue Where to store the zeros. 531 * @param cbValue How many bytes to read. 532 * @param pStats Pointer to the statistics (never NULL). 529 533 */ 530 534 static int iomMMIODoRead00s(void *pvValue, size_t cbValue IOM_MMIO_STATS_COMMA_DECL) -
trunk/src/VBox/VMM/VMMR0/GMMR0.cpp
r80346 r81369 2460 2460 * there are?... 2461 2461 */ 2462 /** @todo .*/2462 /** @todo */ 2463 2463 2464 2464 return false; -
trunk/src/VBox/VMM/VMMR3/PDMDevMiscHlp.cpp
r81150 r81369 326 326 327 327 /** @name Ring-3 HPET Helpers 328 * {@328 * @{ 329 329 */ 330 330 … … 449 449 450 450 /** @name Ring-3 Raw PCI Device Helpers 451 * {@451 * @{ 452 452 */ 453 453 -
trunk/src/VBox/VMM/include/GIMHvInternal.h
r80281 r81369 866 866 /** Guest requests purging of outgoing debug data. */ 867 867 #define GIM_HV_DEBUG_PURGE_OUTGOING_DATA RT_BIT_32(1) 868 /** @} */868 /** @} */ 869 869 870 870 … … 882 882 /** @name SynIC. 883 883 * Synthetic Interrupt Controller definitions. 884 * /884 * @{ */ 885 885 /** SynIC version register. */ 886 886 #define GIM_HV_SVERSION 1 … … 1202 1202 /** @} */ 1203 1203 1204 /** @name Hypercalls. */1205 /* @{ */1204 /** @name Hypercalls. 1205 * @{ */ 1206 1206 /** Guest address of the hypercall input parameter page. */ 1207 1207 RTGCPHYS GCPhysHypercallIn; -
trunk/src/VBox/VMM/include/GIMKvmInternal.h
r80281 r81369 79 79 AssertCompile(MSR_GIM_KVM_RANGE0_FIRST <= MSR_GIM_KVM_RANGE0_LAST); 80 80 AssertCompile(MSR_GIM_KVM_RANGE1_FIRST <= MSR_GIM_KVM_RANGE1_LAST); 81 /** @} */ 81 82 82 83 /** KVM page size. */ -
trunk/src/VBox/VMM/include/PGMInternal.h
r80281 r81369 3614 3614 STAMCOUNTER StatR3FlushTLBSameCR3Global; /**< R3: The number of times PGMFlushTLB was called with the same CR3, global. (flush) */ 3615 3615 STAMPROFILE StatR3GstModifyPage; /**< R3: Profiling of the PGMGstModifyPage() body */ 3616 /** @} */3617 3616 } PGMCPUSTATS; 3618 3617 … … 3779 3778 /** Pointer to the page of the current active CR3 - R0 Ptr. */ 3780 3779 R0PTRTYPE(PPGMPOOLPAGE) pShwPageCR3R0; 3781 /** @} */3782 3780 3783 3781 /** For saving stack space, the disassembler state is allocated here instead of -
trunk/src/VBox/VMM/include/VMMTracing.h
r76585 r81369 119 119 120 120 # endif 121 #endif /* IN_RING0 */121 #endif /* IN_RING0 */ 122 122 /** @} */ 123 123 124 124 125 /** @} */126 127 125 #endif /* !VMM_INCLUDED_SRC_include_VMMTracing_h */ 128 126
Note:
See TracChangeset
for help on using the changeset viewer.