1 | /* $Id: RTMpOn-r0drv-generic.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Multiprocessor, Ring-0 Driver, Generic Stubs.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008-2023 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #include <iprt/mp.h>
|
---|
42 | #include "internal/iprt.h"
|
---|
43 |
|
---|
44 | #include <iprt/errcore.h>
|
---|
45 |
|
---|
46 |
|
---|
47 | RTDECL(int) RTMpOnAll(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2)
|
---|
48 | {
|
---|
49 | NOREF(pfnWorker);
|
---|
50 | NOREF(pvUser1);
|
---|
51 | NOREF(pvUser2);
|
---|
52 | return VERR_NOT_SUPPORTED;
|
---|
53 | }
|
---|
54 | RT_EXPORT_SYMBOL(RTMpOnAll);
|
---|
55 |
|
---|
56 |
|
---|
57 | RTDECL(bool) RTMpOnAllIsConcurrentSafe(void)
|
---|
58 | {
|
---|
59 | return false;
|
---|
60 | }
|
---|
61 | RT_EXPORT_SYMBOL(RTMpOnAllIsConcurrentSafe);
|
---|
62 |
|
---|
63 |
|
---|
64 | RTDECL(int) RTMpOnOthers(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2)
|
---|
65 | {
|
---|
66 | NOREF(pfnWorker);
|
---|
67 | NOREF(pvUser1);
|
---|
68 | NOREF(pvUser2);
|
---|
69 | return VERR_NOT_SUPPORTED;
|
---|
70 | }
|
---|
71 | RT_EXPORT_SYMBOL(RTMpOnOthers);
|
---|
72 |
|
---|
73 |
|
---|
74 | RTDECL(int) RTMpOnSpecific(RTCPUID idCpu, PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2)
|
---|
75 | {
|
---|
76 | NOREF(idCpu);
|
---|
77 | NOREF(pfnWorker);
|
---|
78 | NOREF(pvUser1);
|
---|
79 | NOREF(pvUser2);
|
---|
80 | return VERR_NOT_SUPPORTED;
|
---|
81 | }
|
---|
82 | RT_EXPORT_SYMBOL(RTMpOnSpecific);
|
---|
83 |
|
---|
84 |
|
---|
85 | RTDECL(int) RTMpOnPair(RTCPUID idCpu1, RTCPUID idCpu2, uint32_t fFlags, PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2)
|
---|
86 | {
|
---|
87 | NOREF(idCpu1);
|
---|
88 | NOREF(idCpu2);
|
---|
89 | NOREF(fFlags);
|
---|
90 | NOREF(pfnWorker);
|
---|
91 | NOREF(pvUser1);
|
---|
92 | NOREF(pvUser2);
|
---|
93 | return VERR_NOT_SUPPORTED;
|
---|
94 | }
|
---|
95 | RT_EXPORT_SYMBOL(RTMpOnPair);
|
---|
96 |
|
---|
97 |
|
---|
98 |
|
---|
99 | RTDECL(bool) RTMpOnPairIsConcurrentExecSupported(void)
|
---|
100 | {
|
---|
101 | return false;
|
---|
102 | }
|
---|
103 | RT_EXPORT_SYMBOL(RTMpOnPairIsConcurrentExecSupported);
|
---|
104 |
|
---|