summaryrefslogtreecommitdiffstats
path: root/src/arch/probe.cc
blob: 52b913b1b57e33838516e6430f2d67bdee5d6e18 (plain)
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
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#include "arch/probe.h"

#include "arch/intel.h"
#include "arch/arm.h"
#include "arch/ppc.h"

int ceph_arch_probe(void)
{
  if (ceph_arch_probed)
    return 1;
#if defined(__i386__) || defined(__x86_64__)
  ceph_arch_intel_probe();
#elif defined(__arm__) || defined(__aarch64__)
  ceph_arch_arm_probe();
#elif defined(__powerpc__) || defined(__ppc__)
  ceph_arch_ppc_probe();
#endif
  ceph_arch_probed = 1;
  return 1;
}

// do this once using the magic of c++.
int ceph_arch_probed = ceph_arch_probe();