~ubuntu-branches/ubuntu/trusty/virtualbox-lts-xenial/trusty-proposed

« back to all changes in this revision

Viewing changes to src/VBox/Runtime/generic/RTThreadSetAffinityToCpu-generic.cpp

  • Committer: Package Import Robot
  • Author(s): Gianfranco Costamagna
  • Date: 2016-02-23 14:28:26 UTC
  • Revision ID: package-import@ubuntu.com-20160223142826-bdu69el2z6wa2a44
Tags: upstream-4.3.36-dfsg
ImportĀ upstreamĀ versionĀ 4.3.36-dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: RTThreadSetAffinityToCpu-generic.cpp $ */
 
2
/** @file
 
3
 * IPRT - Generic RTThreadSetAffinityToCpu implementation.
 
4
 */
 
5
 
 
6
/*
 
7
 * Copyright (C) 2011 Oracle Corporation
 
8
 *
 
9
 * This file is part of VirtualBox Open Source Edition (OSE), as
 
10
 * available from http://www.virtualbox.org. This file is free software;
 
11
 * you can redistribute it and/or modify it under the terms of the GNU
 
12
 * General Public License (GPL) as published by the Free Software
 
13
 * Foundation, in version 2 as it comes in the "COPYING" file of the
 
14
 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
 
15
 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
 
16
 *
 
17
 * The contents of this file may alternatively be used under the terms
 
18
 * of the Common Development and Distribution License Version 1.0
 
19
 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
 
20
 * VirtualBox OSE distribution, in which case the provisions of the
 
21
 * CDDL are applicable instead of those of the GPL.
 
22
 *
 
23
 * You may elect to license modified versions of this file under the
 
24
 * terms and conditions of either the GPL or the CDDL or both.
 
25
 */
 
26
 
 
27
 
 
28
/*******************************************************************************
 
29
*   Header Files                                                               *
 
30
*******************************************************************************/
 
31
#include <iprt/thread.h>
 
32
#include "internal/iprt.h"
 
33
 
 
34
#include <iprt/cpuset.h>
 
35
#include <iprt/err.h>
 
36
 
 
37
 
 
38
 
 
39
RTR3DECL(int) RTThreadSetAffinityToCpu(RTCPUID idCpu)
 
40
{
 
41
    int rc;
 
42
    if (idCpu == NIL_RTCPUID)
 
43
        rc = RTThreadSetAffinity(NULL);
 
44
    else
 
45
    {
 
46
        int iCpu = RTMpCpuIdToSetIndex(idCpu);
 
47
        if (iCpu >= 0)
 
48
        {
 
49
            RTCPUSET CpuSet;
 
50
            RTCpuSetEmpty(&CpuSet);
 
51
            RTCpuSetAddByIndex(&CpuSet, iCpu);
 
52
            rc = RTThreadSetAffinity(&CpuSet);
 
53
        }
 
54
        else
 
55
            rc = VERR_CPU_NOT_FOUND;
 
56
    }
 
57
    return rc;
 
58
}
 
59