01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync/* $Id$ */
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync/** @file
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * IPRT R0 Testcase - Kernel thread, common header.
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync */
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync/*
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * Copyright (C) 2015 Oracle Corporation
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync *
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * available from http://www.virtualbox.org. This file is free software;
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * you can redistribute it and/or modify it under the terms of the GNU
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * General Public License (GPL) as published by the Free Software
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync *
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * The contents of this file may alternatively be used under the terms
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * of the Common Development and Distribution License Version 1.0
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * VirtualBox OSE distribution, in which case the provisions of the
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * CDDL are applicable instead of those of the GPL.
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync *
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * You may elect to license modified versions of this file under the
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync * terms and conditions of either the GPL or the CDDL or both.
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync */
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync#include "tstRTR0CommonReq.h"
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync#ifdef IN_RING0
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsyncRT_C_DECLS_BEGIN
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsyncDECLEXPORT(int) TSTRTR0ThreadSrvReqHandler(PSUPDRVSESSION pSession, uint32_t uOperation, uint64_t u64Arg,
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync PSUPR0SERVICEREQHDR pReqHdr);
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsyncRT_C_DECLS_END
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync#endif
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsynctypedef enum TSTR0THREAD
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync{
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync TSTRTR0THREAD_SANITY_OK = RTTSTR0REQ_FIRST_USER,
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync TSTRTR0THREAD_SANITY_FAILURE,
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync TSTRTR0THREAD_BASIC
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync} TSTR0THREAD;
01bfc3834fc0d724e808adf928b2bfe541f9f211vboxsync