mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 22:43:03 +01:00
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
// 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)
|
|
|
|
#ifndef CDSLIB_OS_TOPOLOGY_H
|
|
#define CDSLIB_OS_TOPOLOGY_H
|
|
|
|
#include <cds/details/defs.h>
|
|
|
|
#if CDS_OS_TYPE == CDS_OS_WIN32 || CDS_OS_TYPE == CDS_OS_WIN64 || CDS_OS_TYPE == CDS_OS_MINGW
|
|
# include <cds/os/win/topology.h>
|
|
#elif CDS_OS_TYPE == CDS_OS_LINUX
|
|
# include <cds/os/linux/topology.h>
|
|
#elif CDS_OS_TYPE == CDS_OS_SUN_SOLARIS
|
|
# include <cds/os/sunos/topology.h>
|
|
#elif CDS_OS_TYPE == CDS_OS_HPUX
|
|
# include <cds/os/hpux/topology.h>
|
|
#elif CDS_OS_TYPE == CDS_OS_AIX
|
|
# include <cds/os/aix/topology.h>
|
|
#elif CDS_OS_TYPE == CDS_OS_FREE_BSD || CDS_OS_TYPE == CDS_OS_OPEN_BSD || CDS_OS_TYPE == CDS_OS_NET_BSD
|
|
# include <cds/os/free_bsd/topology.h>
|
|
#elif CDS_OS_TYPE == CDS_OS_OSX
|
|
# include <cds/os/osx/topology.h>
|
|
#elif CDS_OS_TYPE == CDS_OS_PTHREAD || CDS_OS_INTERFACE == CDS_OSI_UNIX
|
|
# include <cds/os/posix/fake_topology.h>
|
|
#else
|
|
# error Unknown OS. Compilation aborted
|
|
#endif
|
|
|
|
#endif // #ifndef CDSLIB_OS_TOPOLOGY_H
|