5bcba6513b7748a4c251831cb4b1546e19564d96vboxsync/* $Id$ */
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync/** @file
5b281ba489ca18f0380d7efc7a5108b606cce449vboxsync * IPRT - Convert Darwin Mach returns codes to iprt status codes.
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync */
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync/*
c58f1213e628a545081c70e26c6b67a841cff880vboxsync * Copyright (C) 2006-2010 Oracle Corporation
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync *
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync * available from http://www.virtualbox.org. This file is free software;
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync * you can redistribute it and/or modify it under the terms of the GNU
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * General Public License (GPL) as published by the Free Software
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync *
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * The contents of this file may alternatively be used under the terms
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * of the Common Development and Distribution License Version 1.0
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * VirtualBox OSE distribution, in which case the provisions of the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * CDDL are applicable instead of those of the GPL.
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync *
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * You may elect to license modified versions of this file under the
a16eb14ad7a4b5ef91ddc22d3e8e92d930f736fcvboxsync * terms and conditions of either the GPL or the CDDL or both.
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync */
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync/*******************************************************************************
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync* Header Files *
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync*******************************************************************************/
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync#include <mach/kern_return.h>
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync#include <iprt/err.h>
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync#include <iprt/assert.h>
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsyncRTDECL(int) RTErrConvertFromDarwinKern(int iNativeCode)
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync{
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync /*
ad27e1d5e48ca41245120c331cc88b50464813cevboxsync * 'optimized' success case.
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync */
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync if (iNativeCode == KERN_SUCCESS)
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync return VINF_SUCCESS;
ba272c487c0ba7509418d0210b2997d4739a467evboxsync return RTErrConvertFromDarwin(iNativeCode);
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync}
5326ed3cdf88641d5299b2c70c2c0aa7e78e8acfvboxsync