forked from khizmax/libcds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
topology_hpux.cpp
82 lines (63 loc) · 2.44 KB
/
topology_hpux.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Copyright (c) 2006-2018 Maxim Khizhinsky
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
#include <cds/os/topology.h>
#if CDS_OS_TYPE == CDS_OS_HPUX
#include <cds/algo/atomic.h>
#include <limits>
namespace cds { namespace OS { inline namespace Hpux {
size_t topology::s_nProcMapSize = 0;
topology::processor_map * topology::s_procMap = nullptr;
void topology::make_processor_map()
{
spu_t nProc;
spu_t nMaxProcNo;
// Processor numbers are not sequential in HP-UX.
// Calculate max processor number
nProc = nMaxProcNo = ::mpctl( MPC_GETFIRSTSPU, 0, 0 );
while ( (nProc = ::mpctl( MPC_GETNEXTSPU, nProc, 0 )) != -1 ) {
if ( nMaxProcNo < nProc )
nMaxProcNo = nProc;
}
// Allocate processor map array
s_nProcMapSize = nMaxProcNo + 1;
// We cannot use operator new or std::allocator in this code
// since the initialization phase may be called from
// our overloaded operator new that based on cds::mihcael::Heap
// As a result, a deadlock may be occured
s_procMap = reinterpret_cast<processor_map *>(::malloc( sizeof(s_procMap[0]) * s_nProcMapSize ));
processor_map * pEnd = s_procMap + s_nProcMapSize;
for ( processor_map * p = s_procMap; p != pEnd; ++p ) {
p->nCell = 0;
p->nNativeProcNo = -1;
p->nProcNo = std::numeric_limits<unsigned int>::max();
}
// Fill processor map array
unsigned int nProcNo = 0;
nProc = ::mpctl( MPC_GETFIRSTSPU, 0, 0 );
s_procMap[ nProc ].nNativeProcNo = nProc;
s_procMap[ nProc ].nProcNo = nProcNo++;
s_procMap[ nProc ].nCell = ::mpctl( MPC_SPUTOLDOM, nProc, 0 );
while ( (nProc = ::mpctl( MPC_GETNEXTSPU, nProc, 0 )) != -1 ) {
processor_map * p = s_procMap + nProc;
p->nNativeProcNo = nProc;
p->nProcNo = nProcNo++;
p->nCell = ::mpctl( MPC_SPUTOLDOM, nProc, 0 );
}
}
void topology::init()
{
assert( s_procMap == nullptr );
make_processor_map();
}
void topology::fini()
{
assert( s_procMap );
if ( s_procMap ) {
::free( s_procMap );
s_procMap = nullptr;
}
}
}}} // namespace cds::OS::Hpux
#endif // #if CDS_OS_TYPE == CDS_OS_HPUX