blob: fc86cadf074fceb3779090495645f085665d5eb2 (
plain) (
tree)
|
|
/* Copyright (c) 2020 Johannes Stoelp */
#pragma once
#if !defined(linux)
static_assert(false, "Matcha Threads only supported on Linux!");
#endif
#if defined(__x86_64__) || defined(__amd64__)
# include "arch/x86_64/api.h"
#else
static_assert(false, "Matcha Threads only supported on x86_64!");
#endif
|