VirtualBox

Changeset 32048 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Aug 27, 2010 12:44:51 PM (14 years ago)
Author:
vboxsync
Message:

coredumper: bits.

Location:
trunk/src/VBox/Runtime
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/include/internal/ldrElf.h

    r32019 r32048  
    3838typedef Elf64_Size          Elf_Size;
    3939typedef Elf64_Hashelt       Elf_Hashelt;
    40 typedef Elf64_Ehdr          Elf_Hdr;
     40typedef Elf64_Ehdr          Elf_Ehdr;
    4141typedef Elf64_Shdr          Elf_Shdr;
    4242typedef Elf64_Phdr          Elf_Phdr;
     
    6363typedef Elf32_Size          Elf_Size;
    6464typedef Elf32_Hashelt       Elf_Hashelt;
    65 typedef Elf32_Ehdr          Elf_Hdr;
     65typedef Elf32_Ehdr          Elf_Ehdr;
    6666typedef Elf32_Shdr          Elf_Shdr;
    6767typedef Elf32_Phdr          Elf_Phdr;
  • trunk/src/VBox/Runtime/r3/solaris/coredumper-solaris.cpp

    r31980 r32048  
    10781078
    10791079
    1080 /** 
     1080/**
    10811081 * Callback for rtCoreDumperForEachThread to suspend a thread.
    1082  * 
     1082 *
    10831083 * @param pVBoxCore             Pointer to the core object.
    10841084 * @param pvThreadInfo          Opaque pointer to thread information.
    1085  * 
     1085 *
    10861086 * @return IPRT status code.
    10871087 */
     
    10991099
    11001100
    1101 /** 
     1101/**
    11021102 * Callback for rtCoreDumperForEachThread to resume a thread.
    1103  * 
     1103 *
    11041104 * @param pVBoxCore             Pointer to the core object.
    11051105 * @param pvThreadInfo          Opaque pointer to thread information.
    1106  * 
     1106 *
    11071107 * @return IPRT status code.
    11081108 */
     
    11191119
    11201120
    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 *
    11241124 * @param pVBoxCore             Pointer to the core object.
    11251125 * @param pcThreads             Number of threads read.
    11261126 * @param pfnWorker             Callback function for each thread.
    1127  * 
     1127 *
    11281128 * @return IPRT status code.
    11291129 */
     
    12361236
    12371237/**
    1238  * Stop all running threads of this process except the current one. 
     1238 * Stop all running threads of this process except the current one.
    12391239 *
    12401240 * @param pVBoxCore         Pointer to the core object.
    1241  * 
     1241 *
    12421242 * @return IPRT status code.
    12431243 */
     
    12471247
    12481248    /*
    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.
    12511251     * The assumption here is that threads can only increase not decrease across iterations.
    12521252     */
     
    17751775     * Write the ELF header.
    17761776     */
    1777     Elf_Hdr ElfHdr;
     1777    Elf_Ehdr ElfHdr;
    17781778    RT_ZERO(ElfHdr);
    17791779    ElfHdr.e_ident[EI_MAG0]  = ELFMAG0;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette