process.c (9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e) process.c (8d4a142904f07765b7c7c46abf71f811a0811987)
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * OpenRISC process.c
4 *
5 * Linux architectural port borrowing liberally from similar works of
6 * others. All original copyrights apply as per the original source
7 * declaration.
8 *

--- 105 unchanged lines hidden (view full) ---

114 * Currently we don't have any such state to reset, so this is empty.
115 */
116void flush_thread(void)
117{
118}
119
120void show_regs(struct pt_regs *regs)
121{
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * OpenRISC process.c
4 *
5 * Linux architectural port borrowing liberally from similar works of
6 * others. All original copyrights apply as per the original source
7 * declaration.
8 *

--- 105 unchanged lines hidden (view full) ---

114 * Currently we don't have any such state to reset, so this is empty.
115 */
116void flush_thread(void)
117{
118}
119
120void show_regs(struct pt_regs *regs)
121{
122 extern void show_registers(struct pt_regs *regs);
123
124 show_regs_print_info(KERN_DEFAULT);
125 /* __PHX__ cleanup this mess */
126 show_registers(regs);
127}
128
129/*
130 * Copy the thread-specific (arch specific) info from the current
131 * process to the new one p

--- 154 unchanged lines hidden ---
122 show_regs_print_info(KERN_DEFAULT);
123 /* __PHX__ cleanup this mess */
124 show_registers(regs);
125}
126
127/*
128 * Copy the thread-specific (arch specific) info from the current
129 * process to the new one p

--- 154 unchanged lines hidden ---