2019-05-28 16:57:20 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2008-01-30 12:31:52 +00:00
|
|
|
/*
|
|
|
|
* Internal declarations for x86 TLS implementation functions.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Red Hat, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Red Hat Author: Roland McGrath.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ARCH_X86_KERNEL_TLS_H
|
|
|
|
|
|
|
|
#include <linux/regset.h>
|
|
|
|
|
|
|
|
extern user_regset_active_fn regset_tls_active;
|
2020-02-18 17:14:34 +00:00
|
|
|
extern user_regset_get2_fn regset_tls_get;
|
2008-01-30 12:31:52 +00:00
|
|
|
extern user_regset_set_fn regset_tls_set;
|
|
|
|
|
|
|
|
#endif /* _ARCH_X86_KERNEL_TLS_H */
|