VirtualBox

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

Last change on this file since 22609 was 22492, checked in by vboxsync, 15 years ago

iprt/err.h: VERR_IPE_UNINITIALIZED_STATUS.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 44.5 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/** @} */
602
603
604/** @name Common File/Disk/Pipe/etc Status Codes
605 * @{
606 */
607/** Unresolved (unknown) file i/o error. */
608#define VERR_FILE_IO_ERROR (-100)
609/** File/Device open failed. */
610#define VERR_OPEN_FAILED (-101)
611/** File not found. */
612#define VERR_FILE_NOT_FOUND (-102)
613/** Path not found. */
614#define VERR_PATH_NOT_FOUND (-103)
615/** Invalid (malformed) file/path name. */
616#define VERR_INVALID_NAME (-104)
617/** File/Device already exists. */
618#define VERR_ALREADY_EXISTS (-105)
619/** Too many open files. */
620#define VERR_TOO_MANY_OPEN_FILES (-106)
621/** Seek error. */
622#define VERR_SEEK (-107)
623/** Seek below file start. */
624#define VERR_NEGATIVE_SEEK (-108)
625/** Trying to seek on device. */
626#define VERR_SEEK_ON_DEVICE (-109)
627/** Reached the end of the file. */
628#define VERR_EOF (-110)
629/** Reached the end of the file. */
630#define VINF_EOF 110
631/** Generic file read error. */
632#define VERR_READ_ERROR (-111)
633/** Generic file write error. */
634#define VERR_WRITE_ERROR (-112)
635/** Write protect error. */
636#define VERR_WRITE_PROTECT (-113)
637/** Sharing violation, file is being used by another process. */
638#define VERR_SHARING_VIOLATION (-114)
639/** Unable to lock a region of a file. */
640#define VERR_FILE_LOCK_FAILED (-115)
641/** File access error, another process has locked a portion of the file. */
642#define VERR_FILE_LOCK_VIOLATION (-116)
643/** File or directory can't be created. */
644#define VERR_CANT_CREATE (-117)
645/** Directory can't be deleted. */
646#define VERR_CANT_DELETE_DIRECTORY (-118)
647/** Can't move file to another disk. */
648#define VERR_NOT_SAME_DEVICE (-119)
649/** The filename or extension is too long. */
650#define VERR_FILENAME_TOO_LONG (-120)
651/** Media not present in drive. */
652#define VERR_MEDIA_NOT_PRESENT (-121)
653/** The type of media was not recognized. Not formatted? */
654#define VERR_MEDIA_NOT_RECOGNIZED (-122)
655/** Can't unlock - region was not locked. */
656#define VERR_FILE_NOT_LOCKED (-123)
657/** Unrecoverable error: lock was lost. */
658#define VERR_FILE_LOCK_LOST (-124)
659/** Can't delete directory with files. */
660#define VERR_DIR_NOT_EMPTY (-125)
661/** A directory operation was attempted on a non-directory object. */
662#define VERR_NOT_A_DIRECTORY (-126)
663/** A non-directory operation was attempted on a directory object. */
664#define VERR_IS_A_DIRECTORY (-127)
665/** Tried to grow a file beyond the limit imposed by the process or the filesystem. */
666#define VERR_FILE_TOO_BIG (-128)
667/** No pending request the aio context has to wait for completion. */
668#define VERR_FILE_AIO_NO_REQUEST (-129)
669/** The request could not be canceled or prepared for another transfer
670 * because it is still in progress. */
671#define VERR_FILE_AIO_IN_PROGRESS (-130)
672/** The request could not be canceled because it already completed. */
673#define VERR_FILE_AIO_COMPLETED (-131)
674/** The I/O context couldn't be destroyed because there are still pending requests. */
675#define VERR_FILE_AIO_BUSY (-132)
676/** The requests couldn't be submitted because that would exceed the capacity of the context. */
677#define VERR_FILE_AIO_LIMIT_EXCEEDED (-133)
678/** The request was canceled. */
679#define VERR_FILE_AIO_CANCELED (-134)
680/** The request wasn't submitted so it can't be canceled. */
681#define VERR_FILE_AIO_NOT_SUBMITTED (-135)
682/** A request was not prepared and thus could not be submitted. */
683#define VERR_FILE_AIO_NOT_PREPARED (-136)
684/** Not all requests could be submitted due to resource shortage. */
685#define VERR_FILE_AIO_INSUFFICIENT_RESSOURCES (-137)
686/** Device or resource is busy. */
687#define VERR_RESOURCE_BUSY (-138)
688/** @} */
689
690
691/** @name Generic Filesystem I/O Status Codes
692 * @{
693 */
694/** Unresolved (unknown) disk i/o error. */
695#define VERR_DISK_IO_ERROR (-150)
696/** Invalid drive number. */
697#define VERR_INVALID_DRIVE (-151)
698/** Disk is full. */
699#define VERR_DISK_FULL (-152)
700/** Disk was changed. */
701#define VERR_DISK_CHANGE (-153)
702/** Drive is locked. */
703#define VERR_DRIVE_LOCKED (-154)
704/** The specified disk or diskette cannot be accessed. */
705#define VERR_DISK_INVALID_FORMAT (-155)
706/** Too many symbolic links. */
707#define VERR_TOO_MANY_SYMLINKS (-156)
708/** @} */
709
710
711/** @name Generic Directory Enumeration Status Codes
712 * @{
713 */
714/** Unresolved (unknown) search error. */
715#define VERR_SEARCH_ERROR (-200)
716/** No more files found. */
717#define VERR_NO_MORE_FILES (-201)
718/** No more search handles available. */
719#define VERR_NO_MORE_SEARCH_HANDLES (-202)
720/** RTDirReadEx() failed to retrieve the extra data which was requested. */
721#define VWRN_NO_DIRENT_INFO 203
722/** @} */
723
724
725/** @name Internal Processing Errors
726 * @{
727 */
728/** Internal error - we're screwed if this happens. */
729#define VERR_INTERNAL_ERROR (-225)
730/** Internal error no. 2. */
731#define VERR_INTERNAL_ERROR_2 (-226)
732/** Internal error no. 3. */
733#define VERR_INTERNAL_ERROR_3 (-227)
734/** Internal error no. 4. */
735#define VERR_INTERNAL_ERROR_4 (-228)
736/** Internal error no. 5. */
737#define VERR_INTERNAL_ERROR_5 (-229)
738/** Internal error: Unexpected status code. */
739#define VERR_IPE_UNEXPECTED_STATUS (-230)
740/** Internal error: Unexpected status code. */
741#define VERR_IPE_UNEXPECTED_INFO_STATUS (-231)
742/** Internal error: Unexpected status code. */
743#define VERR_IPE_UNEXPECTED_ERROR_STATUS (-232)
744/** Internal error: Uninitialized status code.
745 * @remarks This is used by value elsewhere. */
746#define VERR_IPE_UNINITIALIZED_STATUS (-233)
747/** @} */
748
749
750/** @name Generic Device I/O Status Codes
751 * @{
752 */
753/** Unresolved (unknown) device i/o error. */
754#define VERR_DEV_IO_ERROR (-250)
755/** Device i/o: Bad unit. */
756#define VERR_IO_BAD_UNIT (-251)
757/** Device i/o: Not ready. */
758#define VERR_IO_NOT_READY (-252)
759/** Device i/o: Bad command. */
760#define VERR_IO_BAD_COMMAND (-253)
761/** Device i/o: CRC error. */
762#define VERR_IO_CRC (-254)
763/** Device i/o: Bad length. */
764#define VERR_IO_BAD_LENGTH (-255)
765/** Device i/o: Sector not found. */
766#define VERR_IO_SECTOR_NOT_FOUND (-256)
767/** Device i/o: General failure. */
768#define VERR_IO_GEN_FAILURE (-257)
769/** @} */
770
771
772/** @name Generic Pipe I/O Status Codes
773 * @{
774 */
775/** Unresolved (unknown) pipe i/o error. */
776#define VERR_PIPE_IO_ERROR (-300)
777/** Broken pipe. */
778#define VERR_BROKEN_PIPE (-301)
779/** Bad pipe. */
780#define VERR_BAD_PIPE (-302)
781/** Pipe is busy. */
782#define VERR_PIPE_BUSY (-303)
783/** No data in pipe. */
784#define VERR_NO_DATA (-304)
785/** Pipe is not connected. */
786#define VERR_PIPE_NOT_CONNECTED (-305)
787/** More data available in pipe. */
788#define VERR_MORE_DATA (-306)
789/** @} */
790
791
792/** @name Generic Semaphores Status Codes
793 * @{
794 */
795/** Unresolved (unknown) semaphore error. */
796#define VERR_SEM_ERROR (-350)
797/** Too many semaphores. */
798#define VERR_TOO_MANY_SEMAPHORES (-351)
799/** Exclusive semaphore is owned by another process. */
800#define VERR_EXCL_SEM_ALREADY_OWNED (-352)
801/** The semaphore is set and cannot be closed. */
802#define VERR_SEM_IS_SET (-353)
803/** The semaphore cannot be set again. */
804#define VERR_TOO_MANY_SEM_REQUESTS (-354)
805/** Attempt to release mutex not owned by caller. */
806#define VERR_NOT_OWNER (-355)
807/** The semaphore has been opened too many times. */
808#define VERR_TOO_MANY_OPENS (-356)
809/** The maximum posts for the event semaphore has been reached. */
810#define VERR_TOO_MANY_POSTS (-357)
811/** The event semaphore has already been posted. */
812#define VERR_ALREADY_POSTED (-358)
813/** The event semaphore has already been reset. */
814#define VERR_ALREADY_RESET (-359)
815/** The semaphore is in use. */
816#define VERR_SEM_BUSY (-360)
817/** The previous ownership of this semaphore has ended. */
818#define VERR_SEM_OWNER_DIED (-361)
819/** Failed to open semaphore by name - not found. */
820#define VERR_SEM_NOT_FOUND (-362)
821/** Semaphore destroyed while waiting. */
822#define VERR_SEM_DESTROYED (-363)
823/** Nested ownership requests are not permitted for this semaphore type. */
824#define VERR_SEM_NESTED (-364)
825/** Deadlock detected. */
826#define VERR_DEADLOCK (-365)
827/** Ping-Pong listen or speak out of turn error. */
828#define VERR_SEM_OUT_OF_TURN (-366)
829/** Tried to take a semaphore in a bad context. */
830#define VERR_SEM_BAD_CONTEXT (-367)
831/** Don't spin for the semaphore, but it is safe to try grab it. */
832#define VINF_SEM_BAD_CONTEXT (367)
833/** @} */
834
835
836/** @name Generic Network I/O Status Codes
837 * @{
838 */
839/** Unresolved (unknown) network error. */
840#define VERR_NET_IO_ERROR (-400)
841/** The network is busy or is out of resources. */
842#define VERR_NET_OUT_OF_RESOURCES (-401)
843/** Net host name not found. */
844#define VERR_NET_HOST_NOT_FOUND (-402)
845/** Network path not found. */
846#define VERR_NET_PATH_NOT_FOUND (-403)
847/** General network printing error. */
848#define VERR_NET_PRINT_ERROR (-404)
849/** The machine is not on the network. */
850#define VERR_NET_NO_NETWORK (-405)
851/** Name is not unique on the network. */
852#define VERR_NET_NOT_UNIQUE_NAME (-406)
853
854/* These are BSD networking error codes - numbers correspond, don't mess! */
855/** Operation in progress. */
856#define VERR_NET_IN_PROGRESS (-436)
857/** Operation already in progress. */
858#define VERR_NET_ALREADY_IN_PROGRESS (-437)
859/** Attempted socket operation with a non-socket handle.
860 * (This includes closed handles.) */
861#define VERR_NET_NOT_SOCKET (-438)
862/** Destination address required. */
863#define VERR_NET_DEST_ADDRESS_REQUIRED (-439)
864/** Message too long. */
865#define VERR_NET_MSG_SIZE (-440)
866/** Protocol wrong type for socket. */
867#define VERR_NET_PROTOCOL_TYPE (-441)
868/** Protocol not available. */
869#define VERR_NET_PROTOCOL_NOT_AVAILABLE (-442)
870/** Protocol not supported. */
871#define VERR_NET_PROTOCOL_NOT_SUPPORTED (-443)
872/** Socket type not supported. */
873#define VERR_NET_SOCKET_TYPE_NOT_SUPPORTED (-444)
874/** Operation not supported. */
875#define VERR_NET_OPERATION_NOT_SUPPORTED (-445)
876/** Protocol family not supported. */
877#define VERR_NET_PROTOCOL_FAMILY_NOT_SUPPORTED (-446)
878/** Address family not supported by protocol family. */
879#define VERR_NET_ADDRESS_FAMILY_NOT_SUPPORTED (-447)
880/** Address already in use. */
881#define VERR_NET_ADDRESS_IN_USE (-448)
882/** Can't assign requested address. */
883#define VERR_NET_ADDRESS_NOT_AVAILABLE (-449)
884/** Network is down. */
885#define VERR_NET_DOWN (-450)
886/** Network is unreachable. */
887#define VERR_NET_UNREACHABLE (-451)
888/** Network dropped connection on reset. */
889#define VERR_NET_CONNECTION_RESET (-452)
890/** Software caused connection abort. */
891#define VERR_NET_CONNECTION_ABORTED (-453)
892/** Connection reset by peer. */
893#define VERR_NET_CONNECTION_RESET_BY_PEER (-454)
894/** No buffer space available. */
895#define VERR_NET_NO_BUFFER_SPACE (-455)
896/** Socket is already connected. */
897#define VERR_NET_ALREADY_CONNECTED (-456)
898/** Socket is not connected. */
899#define VERR_NET_NOT_CONNECTED (-457)
900/** Can't send after socket shutdown. */
901#define VERR_NET_SHUTDOWN (-458)
902/** Too many references: can't splice. */
903#define VERR_NET_TOO_MANY_REFERENCES (-459)
904/** Too many references: can't splice. */
905#define VERR_NET_CONNECTION_TIMED_OUT (-460)
906/** Connection refused. */
907#define VERR_NET_CONNECTION_REFUSED (-461)
908/* ELOOP is not net. */
909/* ENAMETOOLONG is not net. */
910/** Host is down. */
911#define VERR_NET_HOST_DOWN (-464)
912/** No route to host. */
913#define VERR_NET_HOST_UNREACHABLE (-465)
914/** Protocol error. */
915#define VERR_NET_PROTOCOL_ERROR (-466)
916/** @} */
917
918
919/** @name TCP Status Codes
920 * @{
921 */
922/** Stop the TCP server. */
923#define VERR_TCP_SERVER_STOP (-500)
924/** The server was stopped. */
925#define VINF_TCP_SERVER_STOP 500
926/** @} */
927
928
929/** @name L4 Specific Status Codes
930 * @{
931 */
932/** Invalid offset in an L4 dataspace */
933#define VERR_L4_INVALID_DS_OFFSET (-550)
934/** IPC error */
935#define VERR_IPC (-551)
936/** Item already used */
937#define VERR_RESOURCE_IN_USE (-552)
938/** Source/destination not found */
939#define VERR_IPC_PROCESS_NOT_FOUND (-553)
940/** Receive timeout */
941#define VERR_IPC_RECEIVE_TIMEOUT (-554)
942/** Send timeout */
943#define VERR_IPC_SEND_TIMEOUT (-555)
944/** Receive cancelled */
945#define VERR_IPC_RECEIVE_CANCELLED (-556)
946/** Send cancelled */
947#define VERR_IPC_SEND_CANCELLED (-557)
948/** Receive aborted */
949#define VERR_IPC_RECEIVE_ABORTED (-558)
950/** Send aborted */
951#define VERR_IPC_SEND_ABORTED (-559)
952/** Couldn't map pages during receive */
953#define VERR_IPC_RECEIVE_MAP_FAILED (-560)
954/** Couldn't map pages during send */
955#define VERR_IPC_SEND_MAP_FAILED (-561)
956/** Send pagefault timeout in receive */
957#define VERR_IPC_RECEIVE_SEND_PF_TIMEOUT (-562)
958/** Send pagefault timeout in send */
959#define VERR_IPC_SEND_SEND_PF_TIMEOUT (-563)
960/** (One) receive buffer was too small, or too few buffers */
961#define VINF_IPC_RECEIVE_MSG_CUT 564
962/** (One) send buffer was too small, or too few buffers */
963#define VINF_IPC_SEND_MSG_CUT 565
964/** Dataspace manager server not found */
965#define VERR_L4_DS_MANAGER_NOT_FOUND (-566)
966/** @} */
967
968
969/** @name Loader Status Codes.
970 * @{
971 */
972/** Invalid executable signature. */
973#define VERR_INVALID_EXE_SIGNATURE (-600)
974/** The iprt loader recognized a ELF image, but doesn't support loading it. */
975#define VERR_ELF_EXE_NOT_SUPPORTED (-601)
976/** The iprt loader recognized a PE image, but doesn't support loading it. */
977#define VERR_PE_EXE_NOT_SUPPORTED (-602)
978/** The iprt loader recognized a LX image, but doesn't support loading it. */
979#define VERR_LX_EXE_NOT_SUPPORTED (-603)
980/** The iprt loader recognized a LE image, but doesn't support loading it. */
981#define VERR_LE_EXE_NOT_SUPPORTED (-604)
982/** The iprt loader recognized a NE image, but doesn't support loading it. */
983#define VERR_NE_EXE_NOT_SUPPORTED (-605)
984/** The iprt loader recognized a MZ image, but doesn't support loading it. */
985#define VERR_MZ_EXE_NOT_SUPPORTED (-606)
986/** The iprt loader recognized an a.out image, but doesn't support loading it. */
987#define VERR_AOUT_EXE_NOT_SUPPORTED (-607)
988/** Bad executable. */
989#define VERR_BAD_EXE_FORMAT (-608)
990/** Symbol (export) not found. */
991#define VERR_SYMBOL_NOT_FOUND (-609)
992/** Module not found. */
993#define VERR_MODULE_NOT_FOUND (-610)
994/** The loader resolved an external symbol to an address to big for the image format. */
995#define VERR_SYMBOL_VALUE_TOO_BIG (-611)
996/** The image is too big. */
997#define VERR_IMAGE_TOO_BIG (-612)
998/** The image base address is to high for this image type. */
999#define VERR_IMAGE_BASE_TOO_HIGH (-614)
1000/** Mismatching architecture. */
1001#define VERR_LDR_ARCH_MISMATCH (-615)
1002/** The PE loader encountered delayed imports, a feature which hasn't been implemented yet. */
1003#define VERR_LDRPE_DELAY_IMPORT (-620)
1004/** The PE loader doesn't have a clue what the security data directory entry is all about. */
1005#define VERR_LDRPE_SECURITY (-621)
1006/** The PE loader doesn't know how to deal with the global pointer data directory entry yet. */
1007#define VERR_LDRPE_GLOBALPTR (-622)
1008/** The PE loader doesn't support the TLS data directory yet. */
1009#define VERR_LDRPE_TLS (-623)
1010/** The PE loader doesn't grok the COM descriptor data directory entry. */
1011#define VERR_LDRPE_COM_DESCRIPTOR (-624)
1012/** The PE loader encountered an unknown load config directory/header size. */
1013#define VERR_LDRPE_LOAD_CONFIG_SIZE (-625)
1014/** The PE loader encountered a lock prefix table, a feature which hasn't been implemented yet. */
1015#define VERR_LDRPE_LOCK_PREFIX_TABLE (-626)
1016/** The ELF loader doesn't handle foreign endianness. */
1017#define VERR_LDRELF_ODD_ENDIAN (-630)
1018/** The ELF image is 'dynamic', the ELF loader can only deal with 'relocatable' images at present. */
1019#define VERR_LDRELF_DYN (-631)
1020/** The ELF image is 'executable', the ELF loader can only deal with 'relocatable' images at present. */
1021#define VERR_LDRELF_EXEC (-632)
1022/** The ELF image was created for an unsupported target machine type. */
1023#define VERR_LDRELF_MACHINE (-633)
1024/** The ELF version is not supported. */
1025#define VERR_LDRELF_VERSION (-634)
1026/** The ELF loader cannot handle multiple SYMTAB sections. */
1027#define VERR_LDRELF_MULTIPLE_SYMTABS (-635)
1028/** The ELF loader encountered a relocation type which is not implemented. */
1029#define VERR_LDRELF_RELOCATION_NOT_SUPPORTED (-636)
1030/** The ELF loader encountered a bad symbol index. */
1031#define VERR_LDRELF_INVALID_SYMBOL_INDEX (-637)
1032/** The ELF loader encountered an invalid symbol name offset. */
1033#define VERR_LDRELF_INVALID_SYMBOL_NAME_OFFSET (-638)
1034/** The ELF loader encountered an invalid relocation offset. */
1035#define VERR_LDRELF_INVALID_RELOCATION_OFFSET (-639)
1036/** The ELF loader didn't find the symbol/string table for the image. */
1037#define VERR_LDRELF_NO_SYMBOL_OR_NO_STRING_TABS (-640)
1038/** @}*/
1039
1040/** @name Debug Info Reader Status Codes.
1041 * @{
1042 */
1043/** The module contains no line number information. */
1044#define VERR_DBG_NO_LINE_NUMBERS (-650)
1045/** The module contains no symbol information. */
1046#define VERR_DBG_NO_SYMBOLS (-651)
1047/** The specified segment:offset address was invalid. Typically an attempt at
1048 * addressing outside the segment boundary. */
1049#define VERR_DBG_INVALID_ADDRESS (-652)
1050/** Invalid segment index. */
1051#define VERR_DBG_INVALID_SEGMENT_INDEX (-653)
1052/** Invalid segment offset. */
1053#define VERR_DBG_INVALID_SEGMENT_OFFSET (-654)
1054/** Invalid image relative virtual address. */
1055#define VERR_DBG_INVALID_RVA (-655)
1056/** Invalid image relative virtual address. */
1057#define VERR_DBG_SPECIAL_SEGMENT (-656)
1058/** Address conflict within a module/segment.
1059 * Attempted to add a segment, symbol or line number that fully or partially
1060 * overlaps with an existing one. */
1061#define VERR_DBG_ADDRESS_CONFLICT (-657)
1062/** Duplicate symbol within the module.
1063 * Attempted to add a symbol which name already exists within the module. */
1064#define VERR_DBG_DUPLICATE_SYMBOL (-658)
1065/** The segment index specified when adding a new segment is already in use. */
1066#define VERR_DBG_SEGMENT_INDEX_CONFLICT (-659)
1067/** No line number was found for the specified address/ordinal/whatever. */
1068#define VERR_DBG_LINE_NOT_FOUND (-660)
1069/** The length of the symbol name is out of range.
1070 * This means it is an empty string or that it's greater or equal to
1071 * RTDBG_SYMBOL_NAME_LENGTH. */
1072#define VERR_DBG_SYMBOL_NAME_OUT_OF_RANGE (-661)
1073/** The length of the file name is out of range.
1074 * This means it is an empty string or that it's greater or equal to
1075 * RTDBG_FILE_NAME_LENGTH. */
1076#define VERR_DBG_FILE_NAME_OUT_OF_RANGE (-662)
1077/** The length of the segment name is out of range.
1078 * This means it is an empty string or that it is greater or equal to
1079 * RTDBG_SEGMENT_NAME_LENGTH. */
1080#define VERR_DBG_SEGMENT_NAME_OUT_OF_RANGE (-663)
1081/** The specified address range wraps around. */
1082#define VERR_DBG_ADDRESS_WRAP (-664)
1083/** The file is not a valid NM map file. */
1084#define VERR_DBG_NOT_NM_MAP_FILE (-665)
1085/** The file is not a valid /proc/kallsyms file. */
1086#define VERR_DBG_NOT_LINUX_KALLSYMS (-666)
1087/** No debug module interpreter matching the debug info. */
1088#define VERR_DBG_NO_MATCHING_INTERPRETER (-667)
1089/** @} */
1090
1091/** @name Request Packet Status Codes.
1092 * @{
1093 */
1094/** Invalid RT request type.
1095 * For the RTReqAlloc() case, the caller just specified an illegal enmType. For
1096 * all the other occurrences it means indicates corruption, broken logic, or stupid
1097 * interface user. */
1098#define VERR_RT_REQUEST_INVALID_TYPE (-700)
1099/** Invalid RT request state.
1100 * The state of the request packet was not the expected and accepted one(s). Either
1101 * the interface user screwed up, or we've got corruption/broken logic. */
1102#define VERR_RT_REQUEST_STATE (-701)
1103/** Invalid RT request packet.
1104 * One or more of the RT controlled packet members didn't contain the correct
1105 * values. Some thing's broken. */
1106#define VERR_RT_REQUEST_INVALID_PACKAGE (-702)
1107/** The status field has not been updated yet as the request is still
1108 * pending completion. Someone queried the iStatus field before the request
1109 * has been fully processed. */
1110#define VERR_RT_REQUEST_STATUS_STILL_PENDING (-703)
1111/** The request has been freed, don't read the status now.
1112 * Someone is reading the iStatus field of a freed request packet. */
1113#define VERR_RT_REQUEST_STATUS_FREED (-704)
1114/** @} */
1115
1116/** @name Environment Status Code
1117 * @{
1118 */
1119/** The specified environment variable was not found. (RTEnvGetEx) */
1120#define VERR_ENV_VAR_NOT_FOUND (-750)
1121/** The specified environment variable was not found. (RTEnvUnsetEx) */
1122#define VINF_ENV_VAR_NOT_FOUND (750)
1123/** @} */
1124
1125/** @name Multiprocessor Status Codes.
1126 * @{
1127 */
1128/** The specified cpu is offline. */
1129#define VERR_CPU_OFFLINE (-800)
1130/** The specified cpu was not found. */
1131#define VERR_CPU_NOT_FOUND (-801)
1132/** @} */
1133
1134/** @name RTGetOpt status codes
1135 * @{ */
1136/** RTGetOpt: command line option not recognized. */
1137#define VERR_GETOPT_UNKNOWN_OPTION (-825)
1138/** RTGetOpt: command line option needs argument. */
1139#define VERR_GETOPT_REQUIRED_ARGUMENT_MISSING (-826)
1140/** RTGetOpt: command line option has argument with bad format. */
1141#define VERR_GETOPT_INVALID_ARGUMENT_FORMAT (-827)
1142/** RTGetOpt: Not an option. */
1143#define VINF_GETOPT_NOT_OPTION 828
1144/** @} */
1145
1146/** @name RTCache status codes
1147 * @{ */
1148/** RTCache: cache is full. */
1149#define VERR_CACHE_FULL (-850)
1150/** RTCache: cache is empty. */
1151#define VERR_CACHE_EMPTY (-851)
1152/** @} */
1153
1154/** @name RTS3 status codes
1155 * @{ */
1156/** Access denied error */
1157#define VERR_S3_ACCESS_DENIED (-875)
1158/** The bucket/key wasn't found */
1159#define VERR_S3_NOT_FOUND (-876)
1160/** Bucket already exists. */
1161#define VERR_S3_BUCKET_ALREADY_EXISTS (-877)
1162/** Can't delete bucket with keys. */
1163#define VERR_S3_BUCKET_NOT_EMPTY (-878)
1164/** The current operation was canceled */
1165#define VERR_S3_CANCELED (-879)
1166/** @} */
1167
1168/** @name RTManifest status codes
1169 * @{ */
1170/** A digest type used in the manifest file isn't supported */
1171#define VERR_MANIFEST_UNSUPPORTED_DIGEST_TYPE (-900)
1172/** An entry in the manifest file couldn't be interpreted correctly */
1173#define VERR_MANIFEST_WRONG_FILE_FORMAT (-901)
1174/** A digest doesn't match the corresponding file */
1175#define VERR_MANIFEST_DIGEST_MISMATCH (-902)
1176/** The file list doesn't match to the content of the manifest file */
1177#define VERR_MANIFEST_FILE_MISMATCH (-903)
1178/** @} */
1179
1180/** @name RTTar status codes
1181 * @{ */
1182/** The checksum of a tar header record doesn't match */
1183#define VERR_TAR_CHKSUM_MISMATCH (-925)
1184/** @} */
1185
1186/* SED-END */
1187
1188/** @} */
1189
1190RT_C_DECLS_END
1191
1192#endif
1193
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