Changeset 32048 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Aug 27, 2010 12:44:51 PM (14 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/ldrElf.h
r32019 r32048 38 38 typedef Elf64_Size Elf_Size; 39 39 typedef Elf64_Hashelt Elf_Hashelt; 40 typedef Elf64_Ehdr Elf_ Hdr;40 typedef Elf64_Ehdr Elf_Ehdr; 41 41 typedef Elf64_Shdr Elf_Shdr; 42 42 typedef Elf64_Phdr Elf_Phdr; … … 63 63 typedef Elf32_Size Elf_Size; 64 64 typedef Elf32_Hashelt Elf_Hashelt; 65 typedef Elf32_Ehdr Elf_ Hdr;65 typedef Elf32_Ehdr Elf_Ehdr; 66 66 typedef Elf32_Shdr Elf_Shdr; 67 67 typedef Elf32_Phdr Elf_Phdr; -
trunk/src/VBox/Runtime/r3/solaris/coredumper-solaris.cpp
r31980 r32048 1078 1078 1079 1079 1080 /** 1080 /** 1081 1081 * Callback for rtCoreDumperForEachThread to suspend a thread. 1082 * 1082 * 1083 1083 * @param pVBoxCore Pointer to the core object. 1084 1084 * @param pvThreadInfo Opaque pointer to thread information. 1085 * 1085 * 1086 1086 * @return IPRT status code. 1087 1087 */ … … 1099 1099 1100 1100 1101 /** 1101 /** 1102 1102 * Callback for rtCoreDumperForEachThread to resume a thread. 1103 * 1103 * 1104 1104 * @param pVBoxCore Pointer to the core object. 1105 1105 * @param pvThreadInfo Opaque pointer to thread information. 1106 * 1106 * 1107 1107 * @return IPRT status code. 1108 1108 */ … … 1119 1119 1120 1120 1121 /** 1122 * Calls a thread worker function for all threads in the process as described by /proc 1123 * 1121 /** 1122 * Calls a thread worker function for all threads in the process as described by /proc 1123 * 1124 1124 * @param pVBoxCore Pointer to the core object. 1125 1125 * @param pcThreads Number of threads read. 1126 1126 * @param pfnWorker Callback function for each thread. 1127 * 1127 * 1128 1128 * @return IPRT status code. 1129 1129 */ … … 1236 1236 1237 1237 /** 1238 * Stop all running threads of this process except the current one. 1238 * Stop all running threads of this process except the current one. 1239 1239 * 1240 1240 * @param pVBoxCore Pointer to the core object. 1241 * 1241 * 1242 1242 * @return IPRT status code. 1243 1243 */ … … 1247 1247 1248 1248 /* 1249 * This function tries to ensures while we suspend threads, no newly spawned threads 1250 * or a combination of spawning and terminating threads can cause any threads to be left running. 1249 * This function tries to ensures while we suspend threads, no newly spawned threads 1250 * or a combination of spawning and terminating threads can cause any threads to be left running. 1251 1251 * The assumption here is that threads can only increase not decrease across iterations. 1252 1252 */ … … 1775 1775 * Write the ELF header. 1776 1776 */ 1777 Elf_ Hdr ElfHdr;1777 Elf_Ehdr ElfHdr; 1778 1778 RT_ZERO(ElfHdr); 1779 1779 ElfHdr.e_ident[EI_MAG0] = ELFMAG0;
Note:
See TracChangeset
for help on using the changeset viewer.