VirtualBox

source: vbox/trunk/include/iprt/err.h@ 33876

Last change on this file since 33876 was 33426, checked in by vboxsync, 14 years ago

iprt/symlink.h: Initial code (only tested on linux).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 48.9 KB
Line 
1/** @file
2 * IPRT - Status Codes.
3 */
4
5/*
6 * Copyright (C) 2006-2009 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_err_h
27#define ___iprt_err_h
28
29#include <iprt/cdefs.h>
30#include <iprt/types.h>
31
32RT_C_DECLS_BEGIN
33
34/** @defgroup grp_rt_err RTErr - Status Codes
35 * @ingroup grp_rt
36 * @{
37 */
38
39/** @defgroup grp_rt_err_hlp Status Code Helpers
40 * @ingroup grp_rt_err
41 * @{
42 */
43
44#ifdef __cplusplus
45/**
46 * Strict type validation class.
47 *
48 * This is only really useful for type checking the arguments to RT_SUCCESS,
49 * RT_SUCCESS_NP, RT_FAILURE and RT_FAILURE_NP. The RTErrStrictType2
50 * constructor is for integration with external status code strictness regimes.
51 */
52class RTErrStrictType
53{
54protected:
55 int32_t m_rc;
56
57public:
58 /**
59 * Constructor for interaction with external status code strictness regimes.
60 *
61 * This is a special constructor for helping external return code validator
62 * classes interact cleanly with RT_SUCCESS, RT_SUCCESS_NP, RT_FAILURE and
63 * RT_FAILURE_NP while barring automatic cast to integer.
64 *
65 * @param rcObj IPRT status code object from an automatic cast.
66 */
67 RTErrStrictType(RTErrStrictType2 const rcObj)
68 : m_rc(rcObj.getValue())
69 {
70 }
71
72 /**
73 * Integer constructor used by RT_SUCCESS_NP.
74 *
75 * @param rc IPRT style status code.
76 */
77 RTErrStrictType(int32_t rc)
78 : m_rc(rc)
79 {
80 }
81
82#if 0 /** @todo figure where int32_t is long instead of int. */
83 /**
84 * Integer constructor used by RT_SUCCESS_NP.
85 *
86 * @param rc IPRT style status code.
87 */
88 RTErrStrictType(signed int rc)
89 : m_rc(rc)
90 {
91 }
92#endif
93
94 /**
95 * Test for success.
96 */
97 bool success() const
98 {
99 return m_rc >= 0;
100 }
101
102private:
103 /** @name Try ban a number of wrong types.
104 * @{ */
105 RTErrStrictType(uint8_t rc) : m_rc(-999) { NOREF(rc); }
106 RTErrStrictType(uint16_t rc) : m_rc(-999) { NOREF(rc); }
107 RTErrStrictType(uint32_t rc) : m_rc(-999) { NOREF(rc); }
108 RTErrStrictType(uint64_t rc) : m_rc(-999) { NOREF(rc); }
109 RTErrStrictType(int8_t rc) : m_rc(-999) { NOREF(rc); }
110 RTErrStrictType(int16_t rc) : m_rc(-999) { NOREF(rc); }
111 RTErrStrictType(int64_t rc) : m_rc(-999) { NOREF(rc); }
112 /** @todo fight long here - clashes with int32_t/int64_t on some platforms. */
113 /** @} */
114};
115#endif /* __cplusplus */
116
117
118/** @def RTERR_STRICT_RC
119 * Indicates that RT_SUCCESS_NP, RT_SUCCESS, RT_FAILURE_NP and RT_FAILURE should
120 * make type enforcing at compile time.
121 *
122 * @remarks Only define this for C++ code.
123 */
124#if defined(__cplusplus) \
125 && !defined(RTERR_STRICT_RC) \
126 && ( defined(DOXYGEN_RUNNING) \
127 || defined(DEBUG) \
128 || defined(RT_STRICT) )
129# define RTERR_STRICT_RC 1
130#endif
131
132
133/** @def RT_SUCCESS
134 * Check for success. We expect success in normal cases, that is the code path depending on
135 * this check is normally taken. To prevent any prediction use RT_SUCCESS_NP instead.
136 *
137 * @returns true if rc indicates success.
138 * @returns false if rc indicates failure.
139 *
140 * @param rc The iprt status code to test.
141 */
142#define RT_SUCCESS(rc) ( RT_LIKELY(RT_SUCCESS_NP(rc)) )
143
144/** @def RT_SUCCESS_NP
145 * Check for success. Don't predict the result.
146 *
147 * @returns true if rc indicates success.
148 * @returns false if rc indicates failure.
149 *
150 * @param rc The iprt status code to test.
151 */
152#ifdef RTERR_STRICT_RC
153# define RT_SUCCESS_NP(rc) ( RTErrStrictType(rc).success() )
154#else
155# define RT_SUCCESS_NP(rc) ( (int)(rc) >= VINF_SUCCESS )
156#endif
157
158/** @def RT_FAILURE
159 * Check for failure. We don't expect in normal cases, that is the code path depending on
160 * this check is normally NOT taken. To prevent any prediction use RT_FAILURE_NP instead.
161 *
162 * @returns true if rc indicates failure.
163 * @returns false if rc indicates success.
164 *
165 * @param rc The iprt status code to test.
166 */
167#define RT_FAILURE(rc) ( RT_UNLIKELY(!RT_SUCCESS_NP(rc)) )
168
169/** @def RT_FAILURE_NP
170 * Check for failure. Don't predict the result.
171 *
172 * @returns true if rc indicates failure.
173 * @returns false if rc indicates success.
174 *
175 * @param rc The iprt status code to test.
176 */
177#define RT_FAILURE_NP(rc) ( !RT_SUCCESS_NP(rc) )
178
179/**
180 * Converts a Darwin HRESULT error to an iprt status code.
181 *
182 * @returns iprt status code.
183 * @param iNativeCode HRESULT error code.
184 * @remark Darwin ring-3 only.
185 */
186RTDECL(int) RTErrConvertFromDarwinCOM(int32_t iNativeCode);
187
188/**
189 * Converts a Darwin IOReturn error to an iprt status code.
190 *
191 * @returns iprt status code.
192 * @param iNativeCode IOReturn error code.
193 * @remark Darwin only.
194 */
195RTDECL(int) RTErrConvertFromDarwinIO(int iNativeCode);
196
197/**
198 * Converts a Darwin kern_return_t error to an iprt status code.
199 *
200 * @returns iprt status code.
201 * @param iNativeCode kern_return_t error code.
202 * @remark Darwin only.
203 */
204RTDECL(int) RTErrConvertFromDarwinKern(int iNativeCode);
205
206/**
207 * Converts a Darwin error to an iprt status code.
208 *
209 * This will consult RTErrConvertFromDarwinKern, RTErrConvertFromDarwinIO
210 * and RTErrConvertFromDarwinCOM in this order. The latter is ring-3 only as it
211 * doesn't apply elsewhere.
212 *
213 * @returns iprt status code.
214 * @param iNativeCode Darwin error code.
215 * @remarks Darwin only.
216 * @remarks This is recommended over RTErrConvertFromDarwinKern and RTErrConvertFromDarwinIO
217 * since these are really just subsets of the same error space.
218 */
219RTDECL(int) RTErrConvertFromDarwin(int iNativeCode);
220
221/**
222 * Converts errno to iprt status code.
223 *
224 * @returns iprt status code.
225 * @param uNativeCode errno code.
226 */
227RTDECL(int) RTErrConvertFromErrno(unsigned uNativeCode);
228
229/**
230 * Converts a L4 errno to a iprt status code.
231 *
232 * @returns iprt status code.
233 * @param uNativeCode l4 errno.
234 * @remark L4 only.
235 */
236RTDECL(int) RTErrConvertFromL4Errno(unsigned uNativeCode);
237
238/**
239 * Converts NT status code to iprt status code.
240 *
241 * Needless to say, this is only available on NT and winXX targets.
242 *
243 * @returns iprt status code.
244 * @param lNativeCode NT status code.
245 * @remark Windows only.
246 */
247RTDECL(int) RTErrConvertFromNtStatus(long lNativeCode);
248
249/**
250 * Converts OS/2 error code to iprt status code.
251 *
252 * @returns iprt status code.
253 * @param uNativeCode OS/2 error code.
254 * @remark OS/2 only.
255 */
256RTDECL(int) RTErrConvertFromOS2(unsigned uNativeCode);
257
258/**
259 * Converts Win32 error code to iprt status code.
260 *
261 * @returns iprt status code.
262 * @param uNativeCode Win32 error code.
263 * @remark Windows only.
264 */
265RTDECL(int) RTErrConvertFromWin32(unsigned uNativeCode);
266
267/**
268 * Converts an iprt status code to a errno status code.
269 *
270 * @returns errno status code.
271 * @param iErr iprt status code.
272 */
273RTDECL(int) RTErrConvertToErrno(int iErr);
274
275
276#ifdef IN_RING3
277
278/**
279 * iprt status code message.
280 */
281typedef struct RTSTATUSMSG
282{
283 /** Pointer to the short message string. */
284 const char *pszMsgShort;
285 /** Pointer to the full message string. */
286 const char *pszMsgFull;
287 /** Pointer to the define string. */
288 const char *pszDefine;
289 /** Status code number. */
290 int iCode;
291} RTSTATUSMSG;
292/** Pointer to iprt status code message. */
293typedef RTSTATUSMSG *PRTSTATUSMSG;
294/** Pointer to const iprt status code message. */
295typedef const RTSTATUSMSG *PCRTSTATUSMSG;
296
297/**
298 * Get the message structure corresponding to a given iprt status code.
299 *
300 * @returns Pointer to read-only message description.
301 * @param rc The status code.
302 */
303RTDECL(PCRTSTATUSMSG) RTErrGet(int rc);
304
305/**
306 * Get the define corresponding to a given iprt status code.
307 *
308 * @returns Pointer to read-only string with the \#define identifier.
309 * @param rc The status code.
310 */
311#define RTErrGetDefine(rc) (RTErrGet(rc)->pszDefine)
312
313/**
314 * Get the short description corresponding to a given iprt status code.
315 *
316 * @returns Pointer to read-only string with the description.
317 * @param rc The status code.
318 */
319#define RTErrGetShort(rc) (RTErrGet(rc)->pszMsgShort)
320
321/**
322 * Get the full description corresponding to a given iprt status code.
323 *
324 * @returns Pointer to read-only string with the description.
325 * @param rc The status code.
326 */
327#define RTErrGetFull(rc) (RTErrGet(rc)->pszMsgFull)
328
329#ifdef RT_OS_WINDOWS
330/**
331 * Windows error code message.
332 */
333typedef struct RTWINERRMSG
334{
335 /** Pointer to the full message string. */
336 const char *pszMsgFull;
337 /** Pointer to the define string. */
338 const char *pszDefine;
339 /** Error code number. */
340 long iCode;
341} RTWINERRMSG;
342/** Pointer to Windows error code message. */
343typedef RTWINERRMSG *PRTWINERRMSG;
344/** Pointer to const Windows error code message. */
345typedef const RTWINERRMSG *PCRTWINERRMSG;
346
347/**
348 * Get the message structure corresponding to a given Windows error code.
349 *
350 * @returns Pointer to read-only message description.
351 * @param rc The status code.
352 */
353RTDECL(PCRTWINERRMSG) RTErrWinGet(long rc);
354
355/** On windows COM errors are part of the Windows error database. */
356typedef RTWINERRMSG RTCOMERRMSG;
357
358#else /* !RT_OS_WINDOWS */
359
360/**
361 * COM/XPCOM error code message.
362 */
363typedef struct RTCOMERRMSG
364{
365 /** Pointer to the full message string. */
366 const char *pszMsgFull;
367 /** Pointer to the define string. */
368 const char *pszDefine;
369 /** Error code number. */
370 uint32_t iCode;
371} RTCOMERRMSG;
372#endif /* !RT_OS_WINDOWS */
373/** Pointer to a XPCOM/COM error code message. */
374typedef RTCOMERRMSG *PRTCOMERRMSG;
375/** Pointer to const a XPCOM/COM error code message. */
376typedef const RTCOMERRMSG *PCRTCOMERRMSG;
377
378/**
379 * Get the message structure corresponding to a given COM/XPCOM error code.
380 *
381 * @returns Pointer to read-only message description.
382 * @param rc The status code.
383 */
384RTDECL(PCRTCOMERRMSG) RTErrCOMGet(uint32_t rc);
385
386#endif /* IN_RING3 */
387
388/** @} */
389
390
391/* SED-START */
392
393/** @name Misc. Status Codes
394 * @{
395 */
396/** Success. */
397#define VINF_SUCCESS 0
398
399/** General failure - DON'T USE THIS!!! */
400#define VERR_GENERAL_FAILURE (-1)
401/** Invalid parameter. */
402#define VERR_INVALID_PARAMETER (-2)
403/** Invalid parameter. */
404#define VWRN_INVALID_PARAMETER 2
405/** Invalid magic or cookie. */
406#define VERR_INVALID_MAGIC (-3)
407/** Invalid magic or cookie. */
408#define VWRN_INVALID_MAGIC 3
409/** Invalid loader handle. */
410#define VERR_INVALID_HANDLE (-4)
411/** Invalid loader handle. */
412#define VWRN_INVALID_HANDLE 4
413/** Failed to lock the address range. */
414#define VERR_LOCK_FAILED (-5)
415/** Invalid memory pointer. */
416#define VERR_INVALID_POINTER (-6)
417/** Failed to patch the IDT. */
418#define VERR_IDT_FAILED (-7)
419/** Memory allocation failed. */
420#define VERR_NO_MEMORY (-8)
421/** Already loaded. */
422#define VERR_ALREADY_LOADED (-9)
423/** Permission denied. */
424#define VERR_PERMISSION_DENIED (-10)
425/** Permission denied. */
426#define VINF_PERMISSION_DENIED 10
427/** Version mismatch. */
428#define VERR_VERSION_MISMATCH (-11)
429/** The request function is not implemented. */
430#define VERR_NOT_IMPLEMENTED (-12)
431
432/** The specified path does not point at a symbolic link. */
433#define VERR_NOT_SYMLINK (-19)
434/** Failed to allocate temporary memory. */
435#define VERR_NO_TMP_MEMORY (-20)
436/** Invalid file mode mask (RTFMODE). */
437#define VERR_INVALID_FMODE (-21)
438/** Incorrect call order. */
439#define VERR_WRONG_ORDER (-22)
440/** There is no TLS (thread local storage) available for storing the current thread. */
441#define VERR_NO_TLS_FOR_SELF (-23)
442/** Failed to set the TLS (thread local storage) entry which points to our thread structure. */
443#define VERR_FAILED_TO_SET_SELF_TLS (-24)
444/** Not able to allocate contiguous memory. */
445#define VERR_NO_CONT_MEMORY (-26)
446/** No memory available for page table or page directory. */
447#define VERR_NO_PAGE_MEMORY (-27)
448/** Already initialized. */
449#define VINF_ALREADY_INITIALIZED 28
450/** The specified thread is dead. */
451#define VERR_THREAD_IS_DEAD (-29)
452/** The specified thread is not waitable. */
453#define VERR_THREAD_NOT_WAITABLE (-30)
454/** Pagetable not present. */
455#define VERR_PAGE_TABLE_NOT_PRESENT (-31)
456/** Invalid context.
457 * Typically an API was used by the wrong thread. */
458#define VERR_INVALID_CONTEXT (-32)
459/** The per process timer is busy. */
460#define VERR_TIMER_BUSY (-33)
461/** Address conflict. */
462#define VERR_ADDRESS_CONFLICT (-34)
463/** Unresolved (unknown) host platform error. */
464#define VERR_UNRESOLVED_ERROR (-35)
465/** Invalid function. */
466#define VERR_INVALID_FUNCTION (-36)
467/** Not supported. */
468#define VERR_NOT_SUPPORTED (-37)
469/** Not supported. */
470#define VINF_NOT_SUPPORTED 37
471/** Access denied. */
472#define VERR_ACCESS_DENIED (-38)
473/** Call interrupted. */
474#define VERR_INTERRUPTED (-39)
475/** Call interrupted. */
476#define VINF_INTERRUPTED 39
477/** Timeout. */
478#define VERR_TIMEOUT (-40)
479/** Timeout. */
480#define VINF_TIMEOUT 40
481/** Buffer too small to save result. */
482#define VERR_BUFFER_OVERFLOW (-41)
483/** Buffer too small to save result. */
484#define VINF_BUFFER_OVERFLOW 41
485/** Data size overflow. */
486#define VERR_TOO_MUCH_DATA (-42)
487/** Max threads number reached. */
488#define VERR_MAX_THRDS_REACHED (-43)
489/** Max process number reached. */
490#define VERR_MAX_PROCS_REACHED (-44)
491/** The recipient process has refused the signal. */
492#define VERR_SIGNAL_REFUSED (-45)
493/** A signal is already pending. */
494#define VERR_SIGNAL_PENDING (-46)
495/** The signal being posted is not correct. */
496#define VERR_SIGNAL_INVALID (-47)
497/** The state changed.
498 * This is a generic error message and needs a context to make sense. */
499#define VERR_STATE_CHANGED (-48)
500/** Warning, the state changed.
501 * This is a generic error message and needs a context to make sense. */
502#define VWRN_STATE_CHANGED 48
503/** Error while parsing UUID string */
504#define VERR_INVALID_UUID_FORMAT (-49)
505/** The specified process was not found. */
506#define VERR_PROCESS_NOT_FOUND (-50)
507/** The process specified to a non-block wait had not exited. */
508#define VERR_PROCESS_RUNNING (-51)
509/** Retry the operation. */
510#define VERR_TRY_AGAIN (-52)
511/** Retry the operation. */
512#define VINF_TRY_AGAIN 52
513/** Generic parse error. */
514#define VERR_PARSE_ERROR (-53)
515/** Value out of range. */
516#define VERR_OUT_OF_RANGE (-54)
517/** A numeric conversion encountered a value which was too big for the target. */
518#define VERR_NUMBER_TOO_BIG (-55)
519/** A numeric conversion encountered a value which was too big for the target. */
520#define VWRN_NUMBER_TOO_BIG 55
521/** The number begin converted (string) contained no digits. */
522#define VERR_NO_DIGITS (-56)
523/** The number begin converted (string) contained no digits. */
524#define VWRN_NO_DIGITS 56
525/** Encountered a '-' during conversion to an unsigned value. */
526#define VERR_NEGATIVE_UNSIGNED (-57)
527/** Encountered a '-' during conversion to an unsigned value. */
528#define VWRN_NEGATIVE_UNSIGNED 57
529/** Error while characters translation (unicode and so). */
530#define VERR_NO_TRANSLATION (-58)
531/** Encountered unicode code point which is reserved for use as endian indicator (0xffff or 0xfffe). */
532#define VERR_CODE_POINT_ENDIAN_INDICATOR (-59)
533/** Encountered unicode code point in the surrogate range (0xd800 to 0xdfff). */
534#define VERR_CODE_POINT_SURROGATE (-60)
535/** A string claiming to be UTF-8 is incorrectly encoded. */
536#define VERR_INVALID_UTF8_ENCODING (-61)
537/** Ad string claiming to be in UTF-16 is incorrectly encoded. */
538#define VERR_INVALID_UTF16_ENCODING (-62)
539/** Encountered a unicode code point which cannot be represented as UTF-16. */
540#define VERR_CANT_RECODE_AS_UTF16 (-63)
541/** Got an out of memory condition trying to allocate a string. */
542#define VERR_NO_STR_MEMORY (-64)
543/** Got an out of memory condition trying to allocate a UTF-16 (/UCS-2) string. */
544#define VERR_NO_UTF16_MEMORY (-65)
545/** Get an out of memory condition trying to allocate a code point array. */
546#define VERR_NO_CODE_POINT_MEMORY (-66)
547/** Can't free the memory because it's used in mapping. */
548#define VERR_MEMORY_BUSY (-67)
549/** The timer can't be started because it's already active. */
550#define VERR_TIMER_ACTIVE (-68)
551/** The timer can't be stopped because i's already suspended. */
552#define VERR_TIMER_SUSPENDED (-69)
553/** The operation was cancelled by the user (copy) or another thread (local ipc). */
554#define VERR_CANCELLED (-70)
555/** Failed to initialize a memory object.
556 * Exactly what this means is OS specific. */
557#define VERR_MEMOBJ_INIT_FAILED (-71)
558/** Out of memory condition when allocating memory with low physical backing. */
559#define VERR_NO_LOW_MEMORY (-72)
560/** Out of memory condition when allocating physical memory (without mapping). */
561#define VERR_NO_PHYS_MEMORY (-73)
562/** The address (virtual or physical) is too big. */
563#define VERR_ADDRESS_TOO_BIG (-74)
564/** Failed to map a memory object. */
565#define VERR_MAP_FAILED (-75)
566/** Trailing characters. */
567#define VERR_TRAILING_CHARS (-76)
568/** Trailing characters. */
569#define VWRN_TRAILING_CHARS 76
570/** Trailing spaces. */
571#define VERR_TRAILING_SPACES (-77)
572/** Trailing spaces. */
573#define VWRN_TRAILING_SPACES 77
574/** Generic not found error. */
575#define VERR_NOT_FOUND (-78)
576/** Generic not found warning. */
577#define VWRN_NOT_FOUND 78
578/** Generic invalid state error. */
579#define VERR_INVALID_STATE (-79)
580/** Generic invalid state warning. */
581#define VWRN_INVALID_STATE 79
582/** Generic out of resources error. */
583#define VERR_OUT_OF_RESOURCES (-80)
584/** Generic out of resources warning. */
585#define VWRN_OUT_OF_RESOURCES 80
586/** No more handles available, too many open handles. */
587#define VERR_NO_MORE_HANDLES (-81)
588/** Preemption is disabled.
589 * The requested operation can only be performed when preemption is enabled. */
590#define VERR_PREEMPT_DISABLED (-82)
591/** End of string. */
592#define VERR_END_OF_STRING (-83)
593/** End of string. */
594#define VINF_END_OF_STRING 83
595/** A page count is out of range. */
596#define VERR_PAGE_COUNT_OUT_OF_RANGE (-84)
597/** Generic object destroyed status. */
598#define VERR_OBJECT_DESTROYED (-85)
599/** Generic object was destroyed by the call status. */
600#define VINF_OBJECT_DESTROYED 85
601/** Generic dangling objects status. */
602#define VERR_DANGLING_OBJECTS (-86)
603/** Generic dangling objects status. */
604#define VWRN_DANGLING_OBJECTS 86
605/** Invalid Base64 encoding. */
606#define VERR_INVALID_BASE64_ENCODING (-87)
607/** Return instigated by a callback or similar. */
608#define VERR_CALLBACK_RETURN (-88)
609/** Return instigated by a callback or similar. */
610#define VINF_CALLBACK_RETURN 88
611/** Authentication failure. */
612#define VERR_AUTHENTICATION_FAILURE (-89)
613/** Not a power of two. */
614#define VERR_NOT_POWER_OF_TWO (-90)
615/** Status code, typically given as a parameter, that isn't supposed to be used. */
616#define VERR_IGNORED (-91)
617/** Concurrent access to the object is not allowed. */
618#define VERR_CONCURRENT_ACCESS (-92)
619/** The caller does not have a reference to the object.
620 * This status is used when two threads is caught sharing the same object
621 * reference. */
622#define VERR_CALLER_NO_REFERENCE (-93)
623/** Generic no change error. */
624#define VERR_NO_CHANGE (-95)
625/** Generic no change info. */
626#define VINF_NO_CHANGE 95
627/** Out of memory condition when allocating executable memory. */
628#define VERR_NO_EXEC_MEMORY (-96)
629/** The alignment is not supported. */
630#define VERR_UNSUPPORTED_ALIGNMENT (-97)
631/** The alignment is not really supported, however we got lucky with this
632 * allocation. */
633#define VINF_UNSUPPORTED_ALIGNMENT (97)
634
635/** @} */
636
637
638/** @name Common File/Disk/Pipe/etc Status Codes
639 * @{
640 */
641/** Unresolved (unknown) file i/o error. */
642#define VERR_FILE_IO_ERROR (-100)
643/** File/Device open failed. */
644#define VERR_OPEN_FAILED (-101)
645/** File not found. */
646#define VERR_FILE_NOT_FOUND (-102)
647/** Path not found. */
648#define VERR_PATH_NOT_FOUND (-103)
649/** Invalid (malformed) file/path name. */
650#define VERR_INVALID_NAME (-104)
651/** File/Device already exists. */
652#define VERR_ALREADY_EXISTS (-105)
653/** Too many open files. */
654#define VERR_TOO_MANY_OPEN_FILES (-106)
655/** Seek error. */
656#define VERR_SEEK (-107)
657/** Seek below file start. */
658#define VERR_NEGATIVE_SEEK (-108)
659/** Trying to seek on device. */
660#define VERR_SEEK_ON_DEVICE (-109)
661/** Reached the end of the file. */
662#define VERR_EOF (-110)
663/** Reached the end of the file. */
664#define VINF_EOF 110
665/** Generic file read error. */
666#define VERR_READ_ERROR (-111)
667/** Generic file write error. */
668#define VERR_WRITE_ERROR (-112)
669/** Write protect error. */
670#define VERR_WRITE_PROTECT (-113)
671/** Sharing violation, file is being used by another process. */
672#define VERR_SHARING_VIOLATION (-114)
673/** Unable to lock a region of a file. */
674#define VERR_FILE_LOCK_FAILED (-115)
675/** File access error, another process has locked a portion of the file. */
676#define VERR_FILE_LOCK_VIOLATION (-116)
677/** File or directory can't be created. */
678#define VERR_CANT_CREATE (-117)
679/** Directory can't be deleted. */
680#define VERR_CANT_DELETE_DIRECTORY (-118)
681/** Can't move file to another disk. */
682#define VERR_NOT_SAME_DEVICE (-119)
683/** The filename or extension is too long. */
684#define VERR_FILENAME_TOO_LONG (-120)
685/** Media not present in drive. */
686#define VERR_MEDIA_NOT_PRESENT (-121)
687/** The type of media was not recognized. Not formatted? */
688#define VERR_MEDIA_NOT_RECOGNIZED (-122)
689/** Can't unlock - region was not locked. */
690#define VERR_FILE_NOT_LOCKED (-123)
691/** Unrecoverable error: lock was lost. */
692#define VERR_FILE_LOCK_LOST (-124)
693/** Can't delete directory with files. */
694#define VERR_DIR_NOT_EMPTY (-125)
695/** A directory operation was attempted on a non-directory object. */
696#define VERR_NOT_A_DIRECTORY (-126)
697/** A non-directory operation was attempted on a directory object. */
698#define VERR_IS_A_DIRECTORY (-127)
699/** Tried to grow a file beyond the limit imposed by the process or the filesystem. */
700#define VERR_FILE_TOO_BIG (-128)
701/** No pending request the aio context has to wait for completion. */
702#define VERR_FILE_AIO_NO_REQUEST (-129)
703/** The request could not be canceled or prepared for another transfer
704 * because it is still in progress. */
705#define VERR_FILE_AIO_IN_PROGRESS (-130)
706/** The request could not be canceled because it already completed. */
707#define VERR_FILE_AIO_COMPLETED (-131)
708/** The I/O context couldn't be destroyed because there are still pending requests. */
709#define VERR_FILE_AIO_BUSY (-132)
710/** The requests couldn't be submitted because that would exceed the capacity of the context. */
711#define VERR_FILE_AIO_LIMIT_EXCEEDED (-133)
712/** The request was canceled. */
713#define VERR_FILE_AIO_CANCELED (-134)
714/** The request wasn't submitted so it can't be canceled. */
715#define VERR_FILE_AIO_NOT_SUBMITTED (-135)
716/** A request was not prepared and thus could not be submitted. */
717#define VERR_FILE_AIO_NOT_PREPARED (-136)
718/** Not all requests could be submitted due to resource shortage. */
719#define VERR_FILE_AIO_INSUFFICIENT_RESSOURCES (-137)
720/** Device or resource is busy. */
721#define VERR_RESOURCE_BUSY (-138)
722/** @} */
723
724
725/** @name Generic Filesystem I/O Status Codes
726 * @{
727 */
728/** Unresolved (unknown) disk i/o error. */
729#define VERR_DISK_IO_ERROR (-150)
730/** Invalid drive number. */
731#define VERR_INVALID_DRIVE (-151)
732/** Disk is full. */
733#define VERR_DISK_FULL (-152)
734/** Disk was changed. */
735#define VERR_DISK_CHANGE (-153)
736/** Drive is locked. */
737#define VERR_DRIVE_LOCKED (-154)
738/** The specified disk or diskette cannot be accessed. */
739#define VERR_DISK_INVALID_FORMAT (-155)
740/** Too many symbolic links. */
741#define VERR_TOO_MANY_SYMLINKS (-156)
742/** The OS does not support setting the time stamps on a symbolic link. */
743#define VERR_NS_SYMLINK_SET_TIME (-157)
744/** The OS does not support changing the owner of a symbolic link. */
745#define VERR_NS_SYMLINK_CHANGE_OWNER (-158)
746/** @} */
747
748
749/** @name Generic Directory Enumeration Status Codes
750 * @{
751 */
752/** Unresolved (unknown) search error. */
753#define VERR_SEARCH_ERROR (-200)
754/** No more files found. */
755#define VERR_NO_MORE_FILES (-201)
756/** No more search handles available. */
757#define VERR_NO_MORE_SEARCH_HANDLES (-202)
758/** RTDirReadEx() failed to retrieve the extra data which was requested. */
759#define VWRN_NO_DIRENT_INFO 203
760/** @} */
761
762
763/** @name Internal Processing Errors
764 * @{
765 */
766/** Internal error - we're screwed if this happens. */
767#define VERR_INTERNAL_ERROR (-225)
768/** Internal error no. 2. */
769#define VERR_INTERNAL_ERROR_2 (-226)
770/** Internal error no. 3. */
771#define VERR_INTERNAL_ERROR_3 (-227)
772/** Internal error no. 4. */
773#define VERR_INTERNAL_ERROR_4 (-228)
774/** Internal error no. 5. */
775#define VERR_INTERNAL_ERROR_5 (-229)
776/** Internal error: Unexpected status code. */
777#define VERR_IPE_UNEXPECTED_STATUS (-230)
778/** Internal error: Unexpected status code. */
779#define VERR_IPE_UNEXPECTED_INFO_STATUS (-231)
780/** Internal error: Unexpected status code. */
781#define VERR_IPE_UNEXPECTED_ERROR_STATUS (-232)
782/** Internal error: Uninitialized status code.
783 * @remarks This is used by value elsewhere. */
784#define VERR_IPE_UNINITIALIZED_STATUS (-233)
785/** @} */
786
787
788/** @name Generic Device I/O Status Codes
789 * @{
790 */
791/** Unresolved (unknown) device i/o error. */
792#define VERR_DEV_IO_ERROR (-250)
793/** Device i/o: Bad unit. */
794#define VERR_IO_BAD_UNIT (-251)
795/** Device i/o: Not ready. */
796#define VERR_IO_NOT_READY (-252)
797/** Device i/o: Bad command. */
798#define VERR_IO_BAD_COMMAND (-253)
799/** Device i/o: CRC error. */
800#define VERR_IO_CRC (-254)
801/** Device i/o: Bad length. */
802#define VERR_IO_BAD_LENGTH (-255)
803/** Device i/o: Sector not found. */
804#define VERR_IO_SECTOR_NOT_FOUND (-256)
805/** Device i/o: General failure. */
806#define VERR_IO_GEN_FAILURE (-257)
807/** @} */
808
809
810/** @name Generic Pipe I/O Status Codes
811 * @{
812 */
813/** Unresolved (unknown) pipe i/o error. */
814#define VERR_PIPE_IO_ERROR (-300)
815/** Broken pipe. */
816#define VERR_BROKEN_PIPE (-301)
817/** Bad pipe. */
818#define VERR_BAD_PIPE (-302)
819/** Pipe is busy. */
820#define VERR_PIPE_BUSY (-303)
821/** No data in pipe. */
822#define VERR_NO_DATA (-304)
823/** Pipe is not connected. */
824#define VERR_PIPE_NOT_CONNECTED (-305)
825/** More data available in pipe. */
826#define VERR_MORE_DATA (-306)
827/** @} */
828
829
830/** @name Generic Semaphores Status Codes
831 * @{
832 */
833/** Unresolved (unknown) semaphore error. */
834#define VERR_SEM_ERROR (-350)
835/** Too many semaphores. */
836#define VERR_TOO_MANY_SEMAPHORES (-351)
837/** Exclusive semaphore is owned by another process. */
838#define VERR_EXCL_SEM_ALREADY_OWNED (-352)
839/** The semaphore is set and cannot be closed. */
840#define VERR_SEM_IS_SET (-353)
841/** The semaphore cannot be set again. */
842#define VERR_TOO_MANY_SEM_REQUESTS (-354)
843/** Attempt to release mutex not owned by caller. */
844#define VERR_NOT_OWNER (-355)
845/** The semaphore has been opened too many times. */
846#define VERR_TOO_MANY_OPENS (-356)
847/** The maximum posts for the event semaphore has been reached. */
848#define VERR_TOO_MANY_POSTS (-357)
849/** The event semaphore has already been posted. */
850#define VERR_ALREADY_POSTED (-358)
851/** The event semaphore has already been reset. */
852#define VERR_ALREADY_RESET (-359)
853/** The semaphore is in use. */
854#define VERR_SEM_BUSY (-360)
855/** The previous ownership of this semaphore has ended. */
856#define VERR_SEM_OWNER_DIED (-361)
857/** Failed to open semaphore by name - not found. */
858#define VERR_SEM_NOT_FOUND (-362)
859/** Semaphore destroyed while waiting. */
860#define VERR_SEM_DESTROYED (-363)
861/** Nested ownership requests are not permitted for this semaphore type. */
862#define VERR_SEM_NESTED (-364)
863/** Deadlock detected. */
864#define VERR_DEADLOCK (-365)
865/** Ping-Pong listen or speak out of turn error. */
866#define VERR_SEM_OUT_OF_TURN (-366)
867/** Tried to take a semaphore in a bad context. */
868#define VERR_SEM_BAD_CONTEXT (-367)
869/** Don't spin for the semaphore, but it is safe to try grab it. */
870#define VINF_SEM_BAD_CONTEXT (367)
871/** Wrong locking order detected. */
872#define VERR_SEM_LV_WRONG_ORDER (-368)
873/** Wrong release order detected. */
874#define VERR_SEM_LV_WRONG_RELEASE_ORDER (-369)
875/** Attempt to recursively enter a non-recurisve lock. */
876#define VERR_SEM_LV_NESTED (-370)
877/** Invalid parameters passed to the lock validator. */
878#define VERR_SEM_LV_INVALID_PARAMETER (-371)
879/** The lock validator detected a deadlock. */
880#define VERR_SEM_LV_DEADLOCK (-372)
881/** The lock validator detected an existing deadlock.
882 * The deadlock was not caused by the current operation, but existed already. */
883#define VERR_SEM_LV_EXISTING_DEADLOCK (-373)
884/** Not the lock owner according our records. */
885#define VERR_SEM_LV_NOT_OWNER (-374)
886/** An illegal lock upgrade was attempted. */
887#define VERR_SEM_LV_ILLEGAL_UPGRADE (-375)
888/** The thread is not a valid signaller of the event. */
889#define VERR_SEM_LV_NOT_SIGNALLER (-376)
890/** Internal error in the lock validator or related components. */
891#define VERR_SEM_LV_INTERNAL_ERROR (-377)
892/** @} */
893
894
895/** @name Generic Network I/O Status Codes
896 * @{
897 */
898/** Unresolved (unknown) network error. */
899#define VERR_NET_IO_ERROR (-400)
900/** The network is busy or is out of resources. */
901#define VERR_NET_OUT_OF_RESOURCES (-401)
902/** Net host name not found. */
903#define VERR_NET_HOST_NOT_FOUND (-402)
904/** Network path not found. */
905#define VERR_NET_PATH_NOT_FOUND (-403)
906/** General network printing error. */
907#define VERR_NET_PRINT_ERROR (-404)
908/** The machine is not on the network. */
909#define VERR_NET_NO_NETWORK (-405)
910/** Name is not unique on the network. */
911#define VERR_NET_NOT_UNIQUE_NAME (-406)
912
913/* These are BSD networking error codes - numbers correspond, don't mess! */
914/** Operation in progress. */
915#define VERR_NET_IN_PROGRESS (-436)
916/** Operation already in progress. */
917#define VERR_NET_ALREADY_IN_PROGRESS (-437)
918/** Attempted socket operation with a non-socket handle.
919 * (This includes closed handles.) */
920#define VERR_NET_NOT_SOCKET (-438)
921/** Destination address required. */
922#define VERR_NET_DEST_ADDRESS_REQUIRED (-439)
923/** Message too long. */
924#define VERR_NET_MSG_SIZE (-440)
925/** Protocol wrong type for socket. */
926#define VERR_NET_PROTOCOL_TYPE (-441)
927/** Protocol not available. */
928#define VERR_NET_PROTOCOL_NOT_AVAILABLE (-442)
929/** Protocol not supported. */
930#define VERR_NET_PROTOCOL_NOT_SUPPORTED (-443)
931/** Socket type not supported. */
932#define VERR_NET_SOCKET_TYPE_NOT_SUPPORTED (-444)
933/** Operation not supported. */
934#define VERR_NET_OPERATION_NOT_SUPPORTED (-445)
935/** Protocol family not supported. */
936#define VERR_NET_PROTOCOL_FAMILY_NOT_SUPPORTED (-446)
937/** Address family not supported by protocol family. */
938#define VERR_NET_ADDRESS_FAMILY_NOT_SUPPORTED (-447)
939/** Address already in use. */
940#define VERR_NET_ADDRESS_IN_USE (-448)
941/** Can't assign requested address. */
942#define VERR_NET_ADDRESS_NOT_AVAILABLE (-449)
943/** Network is down. */
944#define VERR_NET_DOWN (-450)
945/** Network is unreachable. */
946#define VERR_NET_UNREACHABLE (-451)
947/** Network dropped connection on reset. */
948#define VERR_NET_CONNECTION_RESET (-452)
949/** Software caused connection abort. */
950#define VERR_NET_CONNECTION_ABORTED (-453)
951/** Connection reset by peer. */
952#define VERR_NET_CONNECTION_RESET_BY_PEER (-454)
953/** No buffer space available. */
954#define VERR_NET_NO_BUFFER_SPACE (-455)
955/** Socket is already connected. */
956#define VERR_NET_ALREADY_CONNECTED (-456)
957/** Socket is not connected. */
958#define VERR_NET_NOT_CONNECTED (-457)
959/** Can't send after socket shutdown. */
960#define VERR_NET_SHUTDOWN (-458)
961/** Too many references: can't splice. */
962#define VERR_NET_TOO_MANY_REFERENCES (-459)
963/** Too many references: can't splice. */
964#define VERR_NET_CONNECTION_TIMED_OUT (-460)
965/** Connection refused. */
966#define VERR_NET_CONNECTION_REFUSED (-461)
967/* ELOOP is not net. */
968/* ENAMETOOLONG is not net. */
969/** Host is down. */
970#define VERR_NET_HOST_DOWN (-464)
971/** No route to host. */
972#define VERR_NET_HOST_UNREACHABLE (-465)
973/** Protocol error. */
974#define VERR_NET_PROTOCOL_ERROR (-466)
975/** @} */
976
977
978/** @name TCP Status Codes
979 * @{
980 */
981/** Stop the TCP server. */
982#define VERR_TCP_SERVER_STOP (-500)
983/** The server was stopped. */
984#define VINF_TCP_SERVER_STOP 500
985/** The TCP server was shut down using RTTcpServerShutdown. */
986#define VERR_TCP_SERVER_SHUTDOWN (-501)
987/** The TCP server was destroyed. */
988#define VERR_TCP_SERVER_DESTROYED (-502)
989/** The TCP server has no client associated with it. */
990#define VINF_TCP_SERVER_NO_CLIENT 503
991/** @} */
992
993
994/** @name L4 Specific Status Codes
995 * @{
996 */
997/** Invalid offset in an L4 dataspace */
998#define VERR_L4_INVALID_DS_OFFSET (-550)
999/** IPC error */
1000#define VERR_IPC (-551)
1001/** Item already used */
1002#define VERR_RESOURCE_IN_USE (-552)
1003/** Source/destination not found */
1004#define VERR_IPC_PROCESS_NOT_FOUND (-553)
1005/** Receive timeout */
1006#define VERR_IPC_RECEIVE_TIMEOUT (-554)
1007/** Send timeout */
1008#define VERR_IPC_SEND_TIMEOUT (-555)
1009/** Receive cancelled */
1010#define VERR_IPC_RECEIVE_CANCELLED (-556)
1011/** Send cancelled */
1012#define VERR_IPC_SEND_CANCELLED (-557)
1013/** Receive aborted */
1014#define VERR_IPC_RECEIVE_ABORTED (-558)
1015/** Send aborted */
1016#define VERR_IPC_SEND_ABORTED (-559)
1017/** Couldn't map pages during receive */
1018#define VERR_IPC_RECEIVE_MAP_FAILED (-560)
1019/** Couldn't map pages during send */
1020#define VERR_IPC_SEND_MAP_FAILED (-561)
1021/** Send pagefault timeout in receive */
1022#define VERR_IPC_RECEIVE_SEND_PF_TIMEOUT (-562)
1023/** Send pagefault timeout in send */
1024#define VERR_IPC_SEND_SEND_PF_TIMEOUT (-563)
1025/** (One) receive buffer was too small, or too few buffers */
1026#define VINF_IPC_RECEIVE_MSG_CUT 564
1027/** (One) send buffer was too small, or too few buffers */
1028#define VINF_IPC_SEND_MSG_CUT 565
1029/** Dataspace manager server not found */
1030#define VERR_L4_DS_MANAGER_NOT_FOUND (-566)
1031/** @} */
1032
1033
1034/** @name Loader Status Codes.
1035 * @{
1036 */
1037/** Invalid executable signature. */
1038#define VERR_INVALID_EXE_SIGNATURE (-600)
1039/** The iprt loader recognized a ELF image, but doesn't support loading it. */
1040#define VERR_ELF_EXE_NOT_SUPPORTED (-601)
1041/** The iprt loader recognized a PE image, but doesn't support loading it. */
1042#define VERR_PE_EXE_NOT_SUPPORTED (-602)
1043/** The iprt loader recognized a LX image, but doesn't support loading it. */
1044#define VERR_LX_EXE_NOT_SUPPORTED (-603)
1045/** The iprt loader recognized a LE image, but doesn't support loading it. */
1046#define VERR_LE_EXE_NOT_SUPPORTED (-604)
1047/** The iprt loader recognized a NE image, but doesn't support loading it. */
1048#define VERR_NE_EXE_NOT_SUPPORTED (-605)
1049/** The iprt loader recognized a MZ image, but doesn't support loading it. */
1050#define VERR_MZ_EXE_NOT_SUPPORTED (-606)
1051/** The iprt loader recognized an a.out image, but doesn't support loading it. */
1052#define VERR_AOUT_EXE_NOT_SUPPORTED (-607)
1053/** Bad executable. */
1054#define VERR_BAD_EXE_FORMAT (-608)
1055/** Symbol (export) not found. */
1056#define VERR_SYMBOL_NOT_FOUND (-609)
1057/** Module not found. */
1058#define VERR_MODULE_NOT_FOUND (-610)
1059/** The loader resolved an external symbol to an address to big for the image format. */
1060#define VERR_SYMBOL_VALUE_TOO_BIG (-611)
1061/** The image is too big. */
1062#define VERR_IMAGE_TOO_BIG (-612)
1063/** The image base address is to high for this image type. */
1064#define VERR_IMAGE_BASE_TOO_HIGH (-614)
1065/** Mismatching architecture. */
1066#define VERR_LDR_ARCH_MISMATCH (-615)
1067/** Mismatch between IPRT and native loader. */
1068#define VERR_LDR_MISMATCH_NATIVE (-616)
1069/** Failed to resolve an imported (external) symbol. */
1070#define VERR_LDR_IMPORTED_SYMBOL_NOT_FOUND (-617)
1071/** Generic loader failure. */
1072#define VERR_LDR_GENERAL_FAILURE (-618)
1073/** Code signing error. */
1074#define VERR_LDR_IMAGE_HASH (-619)
1075/** The PE loader encountered delayed imports, a feature which hasn't been implemented yet. */
1076#define VERR_LDRPE_DELAY_IMPORT (-620)
1077/** The PE loader encountered a malformed certificate. */
1078#define VERR_LDRPE_CERT_MALFORMED (-621)
1079/** The PE loader encountered a certificate with an unsupported type or structure revision. */
1080#define VERR_LDRPE_CERT_UNSUPPORTED (-622)
1081/** The PE loader doesn't know how to deal with the global pointer data directory entry yet. */
1082#define VERR_LDRPE_GLOBALPTR (-623)
1083/** The PE loader doesn't support the TLS data directory yet. */
1084#define VERR_LDRPE_TLS (-624)
1085/** The PE loader doesn't grok the COM descriptor data directory entry. */
1086#define VERR_LDRPE_COM_DESCRIPTOR (-625)
1087/** The PE loader encountered an unknown load config directory/header size. */
1088#define VERR_LDRPE_LOAD_CONFIG_SIZE (-626)
1089/** The PE loader encountered a lock prefix table, a feature which hasn't been implemented yet. */
1090#define VERR_LDRPE_LOCK_PREFIX_TABLE (-627)
1091/** The ELF loader doesn't handle foreign endianness. */
1092#define VERR_LDRELF_ODD_ENDIAN (-630)
1093/** The ELF image is 'dynamic', the ELF loader can only deal with 'relocatable' images at present. */
1094#define VERR_LDRELF_DYN (-631)
1095/** The ELF image is 'executable', the ELF loader can only deal with 'relocatable' images at present. */
1096#define VERR_LDRELF_EXEC (-632)
1097/** The ELF image was created for an unsupported target machine type. */
1098#define VERR_LDRELF_MACHINE (-633)
1099/** The ELF version is not supported. */
1100#define VERR_LDRELF_VERSION (-634)
1101/** The ELF loader cannot handle multiple SYMTAB sections. */
1102#define VERR_LDRELF_MULTIPLE_SYMTABS (-635)
1103/** The ELF loader encountered a relocation type which is not implemented. */
1104#define VERR_LDRELF_RELOCATION_NOT_SUPPORTED (-636)
1105/** The ELF loader encountered a bad symbol index. */
1106#define VERR_LDRELF_INVALID_SYMBOL_INDEX (-637)
1107/** The ELF loader encountered an invalid symbol name offset. */
1108#define VERR_LDRELF_INVALID_SYMBOL_NAME_OFFSET (-638)
1109/** The ELF loader encountered an invalid relocation offset. */
1110#define VERR_LDRELF_INVALID_RELOCATION_OFFSET (-639)
1111/** The ELF loader didn't find the symbol/string table for the image. */
1112#define VERR_LDRELF_NO_SYMBOL_OR_NO_STRING_TABS (-640)
1113/** @}*/
1114
1115/** @name Debug Info Reader Status Codes.
1116 * @{
1117 */
1118/** The module contains no line number information. */
1119#define VERR_DBG_NO_LINE_NUMBERS (-650)
1120/** The module contains no symbol information. */
1121#define VERR_DBG_NO_SYMBOLS (-651)
1122/** The specified segment:offset address was invalid. Typically an attempt at
1123 * addressing outside the segment boundary. */
1124#define VERR_DBG_INVALID_ADDRESS (-652)
1125/** Invalid segment index. */
1126#define VERR_DBG_INVALID_SEGMENT_INDEX (-653)
1127/** Invalid segment offset. */
1128#define VERR_DBG_INVALID_SEGMENT_OFFSET (-654)
1129/** Invalid image relative virtual address. */
1130#define VERR_DBG_INVALID_RVA (-655)
1131/** Invalid image relative virtual address. */
1132#define VERR_DBG_SPECIAL_SEGMENT (-656)
1133/** Address conflict within a module/segment.
1134 * Attempted to add a segment, symbol or line number that fully or partially
1135 * overlaps with an existing one. */
1136#define VERR_DBG_ADDRESS_CONFLICT (-657)
1137/** Duplicate symbol within the module.
1138 * Attempted to add a symbol which name already exists within the module. */
1139#define VERR_DBG_DUPLICATE_SYMBOL (-658)
1140/** The segment index specified when adding a new segment is already in use. */
1141#define VERR_DBG_SEGMENT_INDEX_CONFLICT (-659)
1142/** No line number was found for the specified address/ordinal/whatever. */
1143#define VERR_DBG_LINE_NOT_FOUND (-660)
1144/** The length of the symbol name is out of range.
1145 * This means it is an empty string or that it's greater or equal to
1146 * RTDBG_SYMBOL_NAME_LENGTH. */
1147#define VERR_DBG_SYMBOL_NAME_OUT_OF_RANGE (-661)
1148/** The length of the file name is out of range.
1149 * This means it is an empty string or that it's greater or equal to
1150 * RTDBG_FILE_NAME_LENGTH. */
1151#define VERR_DBG_FILE_NAME_OUT_OF_RANGE (-662)
1152/** The length of the segment name is out of range.
1153 * This means it is an empty string or that it is greater or equal to
1154 * RTDBG_SEGMENT_NAME_LENGTH. */
1155#define VERR_DBG_SEGMENT_NAME_OUT_OF_RANGE (-663)
1156/** The specified address range wraps around. */
1157#define VERR_DBG_ADDRESS_WRAP (-664)
1158/** The file is not a valid NM map file. */
1159#define VERR_DBG_NOT_NM_MAP_FILE (-665)
1160/** The file is not a valid /proc/kallsyms file. */
1161#define VERR_DBG_NOT_LINUX_KALLSYMS (-666)
1162/** No debug module interpreter matching the debug info. */
1163#define VERR_DBG_NO_MATCHING_INTERPRETER (-667)
1164/** @} */
1165
1166/** @name Request Packet Status Codes.
1167 * @{
1168 */
1169/** Invalid RT request type.
1170 * For the RTReqAlloc() case, the caller just specified an illegal enmType. For
1171 * all the other occurrences it means indicates corruption, broken logic, or stupid
1172 * interface user. */
1173#define VERR_RT_REQUEST_INVALID_TYPE (-700)
1174/** Invalid RT request state.
1175 * The state of the request packet was not the expected and accepted one(s). Either
1176 * the interface user screwed up, or we've got corruption/broken logic. */
1177#define VERR_RT_REQUEST_STATE (-701)
1178/** Invalid RT request packet.
1179 * One or more of the RT controlled packet members didn't contain the correct
1180 * values. Some thing's broken. */
1181#define VERR_RT_REQUEST_INVALID_PACKAGE (-702)
1182/** The status field has not been updated yet as the request is still
1183 * pending completion. Someone queried the iStatus field before the request
1184 * has been fully processed. */
1185#define VERR_RT_REQUEST_STATUS_STILL_PENDING (-703)
1186/** The request has been freed, don't read the status now.
1187 * Someone is reading the iStatus field of a freed request packet. */
1188#define VERR_RT_REQUEST_STATUS_FREED (-704)
1189/** @} */
1190
1191/** @name Environment Status Code
1192 * @{
1193 */
1194/** The specified environment variable was not found. (RTEnvGetEx) */
1195#define VERR_ENV_VAR_NOT_FOUND (-750)
1196/** The specified environment variable was not found. (RTEnvUnsetEx) */
1197#define VINF_ENV_VAR_NOT_FOUND (750)
1198/** @} */
1199
1200/** @name Multiprocessor Status Codes.
1201 * @{
1202 */
1203/** The specified cpu is offline. */
1204#define VERR_CPU_OFFLINE (-800)
1205/** The specified cpu was not found. */
1206#define VERR_CPU_NOT_FOUND (-801)
1207/** @} */
1208
1209/** @name RTGetOpt status codes
1210 * @{ */
1211/** RTGetOpt: Command line option not recognized. */
1212#define VERR_GETOPT_UNKNOWN_OPTION (-825)
1213/** RTGetOpt: Command line option needs argument. */
1214#define VERR_GETOPT_REQUIRED_ARGUMENT_MISSING (-826)
1215/** RTGetOpt: Command line option has argument with bad format. */
1216#define VERR_GETOPT_INVALID_ARGUMENT_FORMAT (-827)
1217/** RTGetOpt: Not an option. */
1218#define VINF_GETOPT_NOT_OPTION 828
1219/** RTGetOpt: Command line option needs an index. */
1220#define VERR_GETOPT_INDEX_MISSING (-829)
1221/** @} */
1222
1223/** @name RTCache status codes
1224 * @{ */
1225/** RTCache: cache is full. */
1226#define VERR_CACHE_FULL (-850)
1227/** RTCache: cache is empty. */
1228#define VERR_CACHE_EMPTY (-851)
1229/** @} */
1230
1231/** @name RTMemCache status codes
1232 * @{ */
1233/** Reached the max cache size. */
1234#define VERR_MEM_CACHE_MAX_SIZE (-855)
1235/** @} */
1236
1237/** @name RTS3 status codes
1238 * @{ */
1239/** Access denied error. */
1240#define VERR_S3_ACCESS_DENIED (-875)
1241/** The bucket/key wasn't found. */
1242#define VERR_S3_NOT_FOUND (-876)
1243/** Bucket already exists. */
1244#define VERR_S3_BUCKET_ALREADY_EXISTS (-877)
1245/** Can't delete bucket with keys. */
1246#define VERR_S3_BUCKET_NOT_EMPTY (-878)
1247/** The current operation was canceled. */
1248#define VERR_S3_CANCELED (-879)
1249/** @} */
1250
1251/** @name RTManifest status codes
1252 * @{ */
1253/** A digest type used in the manifest file isn't supported. */
1254#define VERR_MANIFEST_UNSUPPORTED_DIGEST_TYPE (-900)
1255/** An entry in the manifest file couldn't be interpreted correctly. */
1256#define VERR_MANIFEST_WRONG_FILE_FORMAT (-901)
1257/** A digest doesn't match the corresponding file. */
1258#define VERR_MANIFEST_DIGEST_MISMATCH (-902)
1259/** The file list doesn't match to the content of the manifest file. */
1260#define VERR_MANIFEST_FILE_MISMATCH (-903)
1261/** @} */
1262
1263/** @name RTTar status codes
1264 * @{ */
1265/** The checksum of a tar header record doesn't match. */
1266#define VERR_TAR_CHKSUM_MISMATCH (-925)
1267/** The tar end of file record was read. */
1268#define VERR_TAR_END_OF_FILE (-926)
1269/** @} */
1270
1271/** @name RTPoll status codes
1272 * @{ */
1273/** The handle is not pollable. */
1274#define VERR_POLL_HANDLE_NOT_POLLABLE (-950)
1275/** The handle ID is already present in the poll set. */
1276#define VERR_POLL_HANDLE_ID_EXISTS (-951)
1277/** The handle ID was not found in the set. */
1278#define VERR_POLL_HANDLE_ID_NOT_FOUND (-952)
1279/** The poll set is full. */
1280#define VERR_POLL_SET_IS_FULL (-953)
1281/** @} */
1282
1283/* SED-END */
1284
1285/** @} */
1286
1287RT_C_DECLS_END
1288
1289#endif
1290
Note: See TracBrowser for help on using the repository browser.

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