VirtualBox

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

Last change on this file since 23868 was 23693, checked in by vboxsync, 15 years ago

iprt/err.h: Added VERR_AUTHENTICATION_FAILURE.

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

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