Adaptyst
A comprehensive and architecture-agnostic performance analysis tool
Loading...
Searching...
No Matches
os_detect.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2025 CERN
2// SPDX-License-Identifier: GPL-3.0-or-later
3
4#ifndef ADAPTYST_OS_DETECT_H_
5#define ADAPTYST_OS_DETECT_H_
6
11
12#if defined(unix) || defined(__unix) || defined(_XOPEN_SOURCE) || defined(_POSIX_SOURCE)
13#define ADAPTYST_UNIX
14#endif
15
16#endif