767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync/* $Id$ */
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync/** @file
5b281ba489ca18f0380d7efc7a5108b606cce449vboxsync * IPRT - Process, Ring-0 Driver, Darwin.
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync */
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync/*
c58f1213e628a545081c70e26c6b67a841cff880vboxsync * Copyright (C) 2006-2010 Oracle Corporation
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync *
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync * available from http://www.virtualbox.org. This file is free software;
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync * 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.
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync */
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync
8c99dcd207cf5b7bee01f95fbe19728a94076f94vboxsync
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync/*******************************************************************************
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync* Header Files *
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync*******************************************************************************/
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync#include "the-darwin-kernel.h"
8c99dcd207cf5b7bee01f95fbe19728a94076f94vboxsync#include "internal/iprt.h"
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync#include <iprt/process.h>
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsyncRTDECL(RTPROCESS) RTProcSelf(void)
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync{
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync return proc_selfpid();
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync}
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsyncRTR0DECL(RTR0PROCESS) RTR0ProcHandleSelf(void)
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync{
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync return (RTR0PROCESS)current_task();
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync}
767d073e6dd54e07c236c9f8147fd81456db8aa2vboxsync