d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync/* $Id$ */
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync/** @file
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * IPRT - RTMpIsCpuWorkPending, Generic.
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync */
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync/*
c7814cf6e1240a519cbec0441e033d0e2470ed00vboxsync * Copyright (C) 2009-2010 Oracle Corporation
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync *
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * This file is part of VirtualBox Open Source Edition (OSE), as
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * available from http://www.virtualbox.org. This file is free software;
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * you can redistribute it and/or modify it under the terms of the GNU
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * General Public License (GPL) as published by the Free Software
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * Foundation, in version 2 as it comes in the "COPYING" file of the
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync *
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * The contents of this file may alternatively be used under the terms
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * of the Common Development and Distribution License Version 1.0
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * VirtualBox OSE distribution, in which case the provisions of the
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * CDDL are applicable instead of those of the GPL.
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync *
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * You may elect to license modified versions of this file under the
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * terms and conditions of either the GPL or the CDDL or both.
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync */
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync/*******************************************************************************
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync* Header Files *
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync*******************************************************************************/
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync#include <iprt/mp.h>
aa4bcf0a4b2db3ac352b56a291d49cb8d4b66d32vboxsync#include "internal/iprt.h"
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync/**
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * Check if there's work (DPCs on Windows) pending on the current CPU.
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync *
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync * @return true if there's pending work on the current CPU, false otherwise.
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync */
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsyncRTDECL(bool) RTMpIsCpuWorkPending(void)
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync{
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync return false;
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync}
aa4bcf0a4b2db3ac352b56a291d49cb8d4b66d32vboxsyncRT_EXPORT_SYMBOL(RTMpIsCpuWorkPending);
d9658602103599d13b5449fc1ea49d765a23e6f1vboxsync