VirtualBox

Changeset 20961 in vbox for trunk


Ignore:
Timestamp:
Jun 26, 2009 8:45:18 AM (16 years ago)
Author:
vboxsync
Message:

fixed typo, it means occurred, not occured

Location:
trunk/src/VBox
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/WINNT/Graphics/Display/screen.c

    r20653 r20961  
    887887*
    888888* returns the number of entries in the videomode buffer.
    889 * 0 means no modes are supported by the miniport or that an error occured.
     889* 0 means no modes are supported by the miniport or that an error occurred.
    890890*
    891891* NOTE: the buffer must be freed up by the caller.
  • trunk/src/VBox/Additions/WINNT/VBoxGINA/WinWlx.h

    r1 r20961  
    7777//
    7878//      SCRNSVR_ACTIVITY - used to indicate that keyboard or mouse
    79 //          activity occured while a secure screensaver was active.
     79//          activity occurred while a secure screensaver was active.
    8080//
    8181//      SC_INSERT - used to indicate that a smart card has been inserted
  • trunk/src/VBox/Additions/WINNT/i8042prt/include/mce.h

    r1 r20961  
    289289    ERROR_RECORD_VALID Valid;             //  11: Validation bits
    290290    ULONG              Length;            //  12: Length of this record in bytes, including the header
    291     ERROR_TIMESTAMP    TimeStamp;         //  16: Timestamp recorded when event occured
     291    ERROR_TIMESTAMP    TimeStamp;         //  16: Timestamp recorded when event occurred
    292292    UCHAR              OemPlatformId[16]; //  24: Unique platform identifier. OEM defined.
    293293} ERROR_RECORD_HEADER, *PERROR_RECORD_HEADER;
     
    498498        ULONGLONG Internal:1;              //       5   : Internal bus error
    499499        ULONGLONG External:1;              //       6   : External bus error
    500         ULONGLONG CacheTransfer:1;         //       7   : Error occured in Cache to Cache Transfer
     500        ULONGLONG CacheTransfer:1;         //       7   : Error occurred in Cache to Cache Transfer
    501501        ULONGLONG Type:8;                  //       8-15: Transaction type
    502502        ULONGLONG Severity:5;              //      16-20: Error severity - platform specific
  • trunk/src/VBox/Additions/WINNT/i8042prt/include/ntiologc.h

    r1 r20961  
    531531//  A valid crash dump was found in the paging file while trying to configure
    532532//  a direct dump. Direct dump is disabled! This occurs when the direct dump
    533 //  option is set in the registry but a stop error occured before configuration
     533//  option is set in the registry but a stop error occurred before configuration
    534534//  completed
    535535//
  • trunk/src/VBox/Additions/WINNT/i8042prt/kbddep.c

    r1 r20961  
    560560                                deviceExtension->DumpFlags = 0;
    561561                                KeBugCheckEx(0x0000FFFF,0,0,0,0);
    562                                                   // make occured blue screen
     562                                                  // make occurred blue screen
    563563                            }
    564564                    }
  • trunk/src/VBox/Additions/WINNT/i8042prt/moudep.c

    r13837 r20961  
    19231923        //
    19241924        // If the read timed out, stall and retry.
    1925         // If some other error occured handle it outside the loop
     1925        // If some other error occurred handle it outside the loop
    19261926        //
    19271927
  • trunk/src/VBox/Devices/Network/DevPCNet.cpp

    r20703 r20961  
    515515        uint32_t nofcs:1;       /**< when set, the state of DXMTFCS is ignored and
    516516                                     transmitter FCS generation is activated. */
    517         uint32_t err:1;         /**< error occured */
     517        uint32_t err:1;         /**< error occurred */
    518518        uint32_t own:1;         /**< 0=owned by guest driver, 1=owned by controller */
    519519    } tmd1;
     
    559559        uint32_t oflo:1;        /**< overflow error (lost all or part of incoming frame) */
    560560        uint32_t fram:1;        /**< frame error */
    561         uint32_t err:1;         /**< error occured */
     561        uint32_t err:1;         /**< error occurred */
    562562        uint32_t own:1;         /**< 0=owned by guest driver, 1=owned by controller */
    563563    } rmd1;
  • trunk/src/VBox/Devices/Network/slirp/ip_icmp.c

    r20959 r20961  
    606606
    607607end_error:
    608     LogRel(("NAT: error occured while sending ICMP error message \n"));
     608    LogRel(("NAT: error occurred while sending ICMP error message \n"));
    609609}
    610610#undef ICMP_MAXDATALEN
  • trunk/src/VBox/Devices/Network/slirp/slirp.c

    r20959 r20961  
    228228    if (ret != ERROR_BUFFER_OVERFLOW)
    229229    {
    230         LogRel(("NAT: error %lu occured on capacity detection operation\n", ret));
     230        LogRel(("NAT: error %lu occurred on capacity detection operation\n", ret));
    231231        return -1;
    232232    }
     
    248248    if (ret != ERROR_SUCCESS)
    249249    {
    250         LogRel(("NAT: error %lu occured on fetching adapters info\n", ret));
     250        LogRel(("NAT: error %lu occurred on fetching adapters info\n", ret));
    251251        RTMemFree(addresses);
    252252        return -1;
  • trunk/src/VBox/Devices/Network/slirp/socket.h

    r20959 r20961  
    7575#else /* !RT_OS_WINDOWS */
    7676    /*
    77      * FD_CLOSE event has been occured on socket
     77     * FD_CLOSE event has been occurred on socket
    7878     */
    7979    int so_close;
  • trunk/src/VBox/Devices/Parallel/DrvHostParallel.cpp

    r11286 r20961  
    236236        }
    237237
    238         /* Interrupt occured. */
     238        /* Interrupt occurred. */
    239239        rc = pThis->pDrvHostParallelPort->pfnNotifyInterrupt(pThis->pDrvHostParallelPort);
    240240        AssertRC(rc);
  • trunk/src/VBox/Devices/VMMDev/VBoxDev.cpp

    r20731 r20961  
    8686 * There is a 32 bit event mask which will be read
    8787 * by guest on an interrupt. A non zero bit in the mask
    88  * means that the specific event occured and requires
     88 * means that the specific event occurred and requires
    8989 * processing on guest side.
    9090 *
  • trunk/src/VBox/Disassembler/Disasm.cpp

    r18448 r20961  
    287287    catch(...)
    288288#else
    289     else  /* setjmp has returned a non-zero value: an exception occured */
     289    else  /* setjmp has returned a non-zero value: an exception occurred */
    290290#endif
    291291    {
  • trunk/src/VBox/Disassembler/DisasmCore.cpp

    r20041 r20961  
    391391    catch(...)
    392392# else
    393     else  /* setjmp has returned a non-zero value: an exception occured */
     393    else  /* setjmp has returned a non-zero value: an exception occurred */
    394394# endif
    395395    {
  • trunk/src/VBox/Frontends/VBoxBFE/HGCMThread.h

    r8155 r20961  
    4242
    4343/** Function that is called after message processing by worker thread,
    44  *  or if an error occured during message handling after successfully
     44 *  or if an error occurred during message handling after successfully
    4545 *  posting (hgcmMsgPost) the message to worker thread.
    4646 *
  • trunk/src/VBox/Main/include/hgcm/HGCMThread.h

    r8155 r20961  
    4242
    4343/** Function that is called after message processing by worker thread,
    44  *  or if an error occured during message handling after successfully
     44 *  or if an error occurred during message handling after successfully
    4545 *  posting (hgcmMsgPost) the message to worker thread.
    4646 *
  • trunk/src/VBox/Runtime/r3/posix/fileaio-posix.cpp

    r19562 r20961  
    565565                        else
    566566                        {
    567                             /* An error occured. */
     567                            /* An error occurred. */
    568568                            RTFILEAIOREQ_SET_STATE(pReqInt, COMPLETED);
    569569                            pReqInt->Rc = RTErrConvertFromErrno(rcPosix);
  • trunk/src/VBox/VMM/VMEmt.cpp

    r20901 r20961  
    976976 * Any external event will unblock the thread.
    977977 *
    978  * @returns VINF_SUCCESS unless a fatal error occured. In the latter
     978 * @returns VINF_SUCCESS unless a fatal error occurred. In the latter
    979979 *          case an appropriate status code is returned.
    980980 * @param   pVM         VM handle.
     
    10571057 * return to the caller.
    10581058 *
    1059  * @returns VINF_SUCCESS unless a fatal error occured. In the latter
     1059 * @returns VINF_SUCCESS unless a fatal error occurred. In the latter
    10601060 *          case an appropriate status code is returned.
    10611061 * @param   pUVCpu          Pointer to the user mode VMCPU structure.
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