Changeset 51519 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jun 4, 2014 5:09:03 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 94145
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp
r51450 r51519 5 5 6 6 /* 7 * Copyright (C) 2011-201 3Oracle Corporation7 * Copyright (C) 2011-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 286 286 #define DW_ADDR_i386_near32 UINT8_C(4) 287 287 #define DW_ADDR_i386_far32 UINT8_C(5) 288 /** @} 288 /** @} */ 289 289 290 290 … … 392 392 /** Whether there are children or not. */ 393 393 bool fChildren; 394 /** The tag. 394 /** The tag. */ 395 395 uint16_t uTag; 396 396 /** Offset into the abbrev section of the specification pairs. */ … … 461 461 RTDWARFABBREV LookupAbbrev; 462 462 463 /** The list of compilation units (RTDWARFDIE). 463 /** The list of compilation units (RTDWARFDIE). */ 464 464 RTLISTANCHOR CompileUnitList; 465 465 … … 484 484 PRTDBGDWARFSEG paSegs; 485 485 #ifdef RTDBGMODDWARF_WITH_MEM_CACHE 486 /** DIE allocators. 486 /** DIE allocators. */ 487 487 struct 488 488 { … … 643 643 /** The number of attributes. */ 644 644 size_t cAttributes; 645 /** The*/645 /** Pointer to the array of attributes. */ 646 646 PCRTDWARFATTRDESC paAttributes; 647 647 } RTDWARFDIEDESC; 648 648 typedef struct RTDWARFDIEDESC const *PCRTDWARFDIEDESC; 649 /** DIE descriptor initializer. 649 /** DIE descriptor initializer. */ 650 650 #define DIE_DESC_INIT(a_Type, a_aAttrs) { sizeof(a_Type), RT_ELEMENTS(a_aAttrs), &a_aAttrs[0] } 651 651 … … 741 741 /** Points to the current top of the stack. Initial value -1. */ 742 742 int32_t iTop; 743 /** The value stack. 743 /** The value stack. */ 744 744 uint64_t auStack[64]; 745 745 } RTDWARFLOCST; … … 860 860 RTDWARFREF SpecRef; 861 861 } RTDWARFDIESUBPROGRAM; 862 /** Pointer to a DW_TAG_subprogram DIE. 862 /** Pointer to a DW_TAG_subprogram DIE. */ 863 863 typedef RTDWARFDIESUBPROGRAM *PRTDWARFDIESUBPROGRAM; 864 /** Pointer to a const DW_TAG_subprogram DIE. 864 /** Pointer to a const DW_TAG_subprogram DIE. */ 865 865 typedef RTDWARFDIESUBPROGRAM const *PCRTDWARFDIESUBPROGRAM; 866 866 … … 912 912 bool fExternal; 913 913 } RTDWARFDIELABEL; 914 /** Pointer to a DW_TAG_label DIE. 914 /** Pointer to a DW_TAG_label DIE. */ 915 915 typedef RTDWARFDIELABEL *PRTDWARFDIELABEL; 916 /** Pointer to a const DW_TAG_label DIE. 916 /** Pointer to a const DW_TAG_label DIE. */ 917 917 typedef RTDWARFDIELABEL const *PCRTDWARFDIELABEL; 918 918 … … 936 936 static const struct RTDWARFTAGDESC 937 937 { 938 /** The tag value. 938 /** The tag value. */ 939 939 uint16_t uTag; 940 940 /** The tag name as string. */ -
trunk/src/VBox/Runtime/common/ldr/ldrMemory.cpp
r46115 r51519 6 6 7 7 /* 8 * Copyright (C) 2006-201 3Oracle Corporation8 * Copyright (C) 2006-2014 Oracle Corporation 9 9 * 10 10 * This file is part of VirtualBox Open Source Edition (OSE), as … … 72 72 char szName[1]; 73 73 } RTLDRRDRMEM; 74 /** Memory based loader reader instance data. 74 /** Memory based loader reader instance data. */ 75 75 typedef RTLDRRDRMEM *PRTLDRRDRMEM; 76 76 -
trunk/src/VBox/Runtime/include/internal/iprt.h
r44529 r51519 5 5 6 6 /* 7 * Copyright (C) 2009-201 2Oracle Corporation7 * Copyright (C) 2009-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 63 63 64 64 /** @def RT_MORE_STRICT 65 * Enables more assertions in IPRT. 65 * Enables more assertions in IPRT. */ 66 66 #if !defined(RT_MORE_STRICT) && (defined(DEBUG) || defined(RT_STRICT) || defined(DOXYGEN_RUNNING)) && !defined(RT_OS_WINDOWS) /** @todo enable on windows after testing */ 67 67 # define RT_MORE_STRICT … … 98 98 * Extended version of RT_ASSERT_PREEMPT_CPUID for use before 99 99 * RTSpinlockAcquired* returns. This macro works the idCpuOwner and idAssertCpu 100 * members of the spinlock instance data. 100 * members of the spinlock instance data. */ 101 101 #ifdef RT_MORE_STRICT 102 102 # define RT_ASSERT_PREEMPT_CPUID_SPIN_ACQUIRED(pThis) \ … … 172 172 173 173 /** @def RT_ASSERT_INTS_ON 174 * Asserts that interrupts are disabled when RT_MORE_STRICT is defined. 174 * Asserts that interrupts are disabled when RT_MORE_STRICT is defined. */ 175 175 #ifdef RT_MORE_STRICT 176 176 # if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) -
trunk/src/VBox/Runtime/tools/RTGzip.cpp
r49320 r51519 5 5 6 6 /* 7 * Copyright (C) 2010-201 1Oracle Corporation7 * Copyright (C) 2010-2014 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 69 69 const char *pszInput; 70 70 } RTGZIPCMDOPTS; 71 /** Pointer to GZIP options. 71 /** Pointer to GZIP options. */ 72 72 typedef RTGZIPCMDOPTS *PRTGZIPCMDOPTS; 73 /** Pointer to const GZIP options. 73 /** Pointer to const GZIP options. */ 74 74 typedef RTGZIPCMDOPTS const *PCRTGZIPCMDOPTS; 75 75
Note:
See TracChangeset
for help on using the changeset viewer.