/* $Id$ */
/** @file
* IPRT - RTMpOnPair, generic implementation using RTMpOnAll.
*/
/*
* Copyright (C) 2015 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
/*******************************************************************************
* Structures and Typedefs *
*******************************************************************************/
/**
* Argument package for the generic RTMpOnPair implemenetation.
*/
typedef struct RTMPONPAIRGENERIC
{
void *pvUser1;
void *pvUser2;
/** Count of how many CPUs actually showed up. */
/** Pointer to the an argument package for the generic RTMpOnPair
* implemenation. */
/**
* @callback_method_impl{FNRTMPWORKER,
* Used by RTMpOnPair to call the worker on the two specified CPUs.}
*/
{
/*
* Only the two choosen CPUs should call the worker function, count how
* many of them that showed up.
*/
{
}
}
RTDECL(int) RTMpOnPair(RTCPUID idCpu1, RTCPUID idCpu2, uint32_t fFlags, PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2)
{
int rc;
return VERR_NOT_SUPPORTED;
/*
* Check that both CPUs are online before doing the broadcast call.
*/
if ( RTMpIsCpuOnline(idCpu1)
&& RTMpIsCpuOnline(idCpu2))
{
if (RT_SUCCESS(rc))
{
/*
* Let's see if both of the CPUs showed up.
*/
{ /* likely */ }
else
{
rc = VERR_CPU_IPE_1;
}
}
}
/*
* A CPU must be present to be considered just offline.
*/
else if ( RTMpIsCpuPresent(idCpu1)
&& RTMpIsCpuPresent(idCpu2))
else
return rc;
}
{
return RTMpOnAllIsConcurrentSafe();
}