summaryrefslogtreecommitdiffstats
path: root/arch/csky/kernel/process.c
Commit message (Collapse)AuthorAgeFilesLines
* csky: stacktrace supported.Guo Ren2018-12-311-12/+17
| | | | | | | | | The gcc option "-mbacktrace" will push fp(r8),lr into stack and we could unwind the stack with: fp = *fp lr = (unsigned int *)fp[1] Signed-off-by: Guo Ren <ren_guo@c-sky.com>
* csky: Process management and SignalGuo Ren2018-10-261-0/+136
This patch adds files related to task_switch, sigcontext, signal, fpu context switch. Signed-off-by: Guo Ren <ren_guo@c-sky.com> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Eric W. Biederman <ebiederm@xmission.com>