brintos

brintos / linux-shallow public Read only

0
0
Text · 426 B · 977c25d Raw
20 lines · c
1/* SPDX-License-Identifier: LGPL-2.1-only OR MIT */2/*3 * rseq-thread-pointer.h4 *5 * (C) Copyright 2021 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>6 */7 8#ifndef _RSEQ_THREAD_POINTER9#define _RSEQ_THREAD_POINTER10 11#if defined(__x86_64__) || defined(__i386__)12#include "rseq-x86-thread-pointer.h"13#elif defined(__PPC__)14#include "rseq-ppc-thread-pointer.h"15#else16#include "rseq-generic-thread-pointer.h"17#endif18 19#endif20