~ubuntu-branches/ubuntu/vivid/virtualbox/vivid

« back to all changes in this revision

Viewing changes to include/iprt/err.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2011-12-29 12:29:25 UTC
  • mfrom: (3.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20111229122925-8ota2o33fuk0bkf8
Tags: 4.1.8-dfsg-1
* New upstream release.
* Move all transitional packages to section oldlibs and priority extra.
* Refresh 16-no-update.patch.
* Drop 36-kernel-3.2.patch, applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
863
863
#define VERR_DUPLICATE                      (-98)
864
864
/** Something is missing. */
865
865
#define VERR_MISSING                        (-99)
 
866
/** An unexpected (/unknown) exception was caught. */
 
867
#define VERR_UNEXPECTED_EXCEPTION           (-22400)
866
868
/** @} */
867
869
 
868
870
 
1027
1029
/** Internal error: Uninitialized status code.
1028
1030
 * @remarks This is used by value elsewhere.  */
1029
1031
#define VERR_IPE_UNINITIALIZED_STATUS       (-233)
 
1032
/** Internal error: Supposedly unreachable default case in a switch. */
 
1033
#define VERR_IPE_NOT_REACHED_DEFAULT_CASE   (-234)
1030
1034
/** @} */
1031
1035
 
1032
1036
 
1105
1109
#define VERR_SEM_DESTROYED                  (-363)
1106
1110
/** Nested ownership requests are not permitted for this semaphore type. */
1107
1111
#define VERR_SEM_NESTED                     (-364)
 
1112
/** The release call only release a semaphore nesting, i.e. the caller is still
 
1113
 * holding the semaphore. */
 
1114
#define VINF_SEM_NESTED                     (364)
1108
1115
/** Deadlock detected. */
1109
1116
#define VERR_DEADLOCK                       (-365)
1110
1117
/** Ping-Pong listen or speak out of turn error. */