mirror of
https://github.com/openharmony/third_party_ltp.git
synced 2026-07-01 12:25:45 -04:00
893ac31e33
Signed-off-by: ccdu <duchangcheng1@h-partners.com>
23 lines
396 B
C
23 lines
396 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2024 Cyril Hrubis <chrubis@suse.cz>
|
|
*/
|
|
#ifndef LAPI_ARCH_PRCTL_H__
|
|
#define LAPI_ARCH_PRCTL_H__
|
|
|
|
#include "config.h"
|
|
|
|
#ifdef HAVE_ASM_PRCTL_H
|
|
# include <asm/prctl.h>
|
|
#endif
|
|
|
|
#ifndef ARCH_GET_CPUID
|
|
# define ARCH_GET_CPUID 0x1011
|
|
#endif
|
|
|
|
#ifndef ARCH_SET_CPUID
|
|
# define ARCH_SET_CPUID 0x1012
|
|
#endif
|
|
|
|
#endif /* LAPI_ARCH_PRCTL_H__ */
|