VirtualBox

source: vbox/trunk/src/VBox/Runtime/darwin/RTErrConvertFromDarwinKern.cpp@ 5999

Last change on this file since 5999 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.7 KB
Line 
1/* $Id $ */
2/** @file
3 * innotek Portable Runtime - Convert Darwin Mach returns codes to iprt status codes.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27/*******************************************************************************
28* Header Files *
29*******************************************************************************/
30#include <mach/kern_return.h>
31
32#include <iprt/err.h>
33#include <iprt/assert.h>
34
35
36RTDECL(int) RTErrConvertFromDarwinKern(int iNativeCode)
37{
38 /*
39 * 'optimzied' success case.
40 */
41 if (iNativeCode == KERN_SUCCESS)
42 return VINF_SUCCESS;
43
44 switch (iNativeCode)
45 {
46 case KERN_INVALID_ADDRESS: return VERR_INVALID_POINTER;
47 //case KERN_PROTECTION_FAILURE:
48 //case KERN_NO_SPACE:
49 case KERN_INVALID_ARGUMENT: return VERR_INVALID_PARAMETER;
50 //case KERN_FAILURE:
51 //case KERN_RESOURCE_SHORTAGE:
52 //case KERN_NOT_RECEIVER:
53 case KERN_NO_ACCESS: return VERR_ACCESS_DENIED;
54 //case KERN_MEMORY_FAILURE:
55 //case KERN_MEMORY_ERROR:
56 //case KERN_ALREADY_IN_SET:
57 //case KERN_NOT_IN_SET:
58 //case KERN_NAME_EXISTS:
59 //case KERN_ABORTED:
60 //case KERN_INVALID_NAME:
61 //case KERN_INVALID_TASK:
62 //case KERN_INVALID_RIGHT:
63 //case KERN_INVALID_VALUE:
64 //case KERN_UREFS_OVERFLOW:
65 //case KERN_INVALID_CAPABILITY:
66 //case KERN_RIGHT_EXISTS:
67 //case KERN_INVALID_HOST:
68 //case KERN_MEMORY_PRESENT:
69 //case KERN_MEMORY_DATA_MOVED:
70 //case KERN_MEMORY_RESTART_COPY:
71 //case KERN_INVALID_PROCESSOR_SET:
72 //case KERN_POLICY_LIMIT:
73 //case KERN_INVALID_POLICY:
74 //case KERN_INVALID_OBJECT:
75 //case KERN_ALREADY_WAITING:
76 //case KERN_DEFAULT_SET:
77 //case KERN_EXCEPTION_PROTECTED:
78 //case KERN_INVALID_LEDGER:
79 //case KERN_INVALID_MEMORY_CONTROL:
80 //case KERN_INVALID_SECURITY:
81 //case KERN_NOT_DEPRESSED:
82 //case KERN_TERMINATED:
83 //case KERN_LOCK_SET_DESTROYED:
84 //case KERN_LOCK_UNSTABLE:
85 case KERN_LOCK_OWNED: return VERR_SEM_BUSY;
86 //case KERN_LOCK_OWNED_SELF:
87 case KERN_SEMAPHORE_DESTROYED: return VERR_SEM_DESTROYED;
88 //case KERN_RPC_SERVER_TERMINATED:
89 //case KERN_RPC_TERMINATE_ORPHAN:
90 //case KERN_RPC_CONTINUE_ORPHAN:
91 case KERN_NOT_SUPPORTED: return VERR_NOT_SUPPORTED;
92 //case KERN_NODE_DOWN:
93 //case KERN_NOT_WAITING:
94 case KERN_OPERATION_TIMED_OUT: return VERR_TIMEOUT;
95 }
96
97 /* unknown error. */
98 AssertMsgFailed(("Unhandled error %#x\n", iNativeCode));
99 return VERR_UNRESOLVED_ERROR;
100}
101
102
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