mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 18:24:14 +08:00
7db91e57a0
This patch contains the implementation of tasks on RISC-V, most of which is involved in task switching. Signed-off-by: Palmer Dabbelt <palmer@dabbelt.com>
23 lines
679 B
C
23 lines
679 B
C
/*
|
|
* Copied from arch/arm64/include/asm/kprobes.h
|
|
*
|
|
* Copyright (C) 2013 Linaro Limited
|
|
* Copyright (C) 2017 SiFive
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*/
|
|
|
|
#ifndef _RISCV_KPROBES_H
|
|
#define _RISCV_KPROBES_H
|
|
|
|
#include <asm-generic/kprobes.h>
|
|
|
|
#endif /* _RISCV_KPROBES_H */
|