VirtualBox

Changeset 590 in vbox for trunk/include/iprt


Ignore:
Timestamp:
Feb 4, 2007 2:08:58 PM (18 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
18214
Message:

Generic request packets (port of of the EMT specific VM request packet code)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/err.h

    r467 r590  
    588588/** @} */
    589589
     590/** @name Request Packet Status Codes.
     591 * @{
     592 */
     593/** Invalid RT request type.
     594 * For the RTReqAlloc() case, the caller just specified an illegal enmType. For
     595 * all the other occurences it means indicates corruption, broken logic, or stupid
     596 * interface user. */
     597#define VERR_RT_REQUEST_INVALID_TYPE            (-700)
     598/** Invalid RT request state.
     599 * The state of the request packet was not the expected and accepted one(s). Either
     600 * the interface user screwed up, or we've got corruption/broken logic. */
     601#define VERR_RT_REQUEST_STATE                   (-701)
     602/** Invalid RT request packet.
     603 * One or more of the RT controlled packet members didn't contain the correct
     604 * values. Some thing's broken. */
     605#define VERR_RT_REQUEST_INVALID_PACKAGE         (-702)
     606/** The status field has not been updated yet as the request is still
     607 * pending completion. Someone queried the iStatus field before the request
     608 * has been fully processed. */
     609#define VERR_RT_REQUEST_STATUS_STILL_PENDING    (-703)
     610/** The request has been freed, don't read the status now.
     611 * Someone is reading the iStatus field of a freed request packet. */
     612#define VERR_RT_REQUEST_STATUS_FREED            (-704)
     613/** @} */
    590614
    591615/* SED-END */
Note: See TracChangeset for help on using the changeset viewer.

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