Rev 1078 | Rev 1121 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1078 | Rev 1112 | ||
|---|---|---|---|
| Line 37... | Line 37... | ||
| 37 | #include <arch/console.h> |
37 | #include <arch/console.h> |
| 38 | #include <memstr.h> |
38 | #include <memstr.h> |
| 39 | #include <proc/thread.h> |
39 | #include <proc/thread.h> |
| 40 | #include <proc/uarg.h> |
40 | #include <proc/uarg.h> |
| 41 | #include <print.h> |
41 | #include <print.h> |
| - | 42 | #include <syscall/syscall.h> |
|
| 42 | 43 | ||
| 43 | #include <arch/interrupt.h> |
44 | #include <arch/interrupt.h> |
| 44 | #include <arch/drivers/arc.h> |
45 | #include <arch/drivers/arc.h> |
| 45 | #include <console/chardev.h> |
46 | #include <console/chardev.h> |
| 46 | #include <arch/debugger.h> |
47 | #include <arch/debugger.h> |
| Line 139... | Line 140... | ||
| 139 | } |
140 | } |
| 140 | 141 | ||
| 141 | void after_thread_ran_arch(void) |
142 | void after_thread_ran_arch(void) |
| 142 | { |
143 | { |
| 143 | } |
144 | } |
| - | 145 | ||
| - | 146 | /** Set Thread-local-storeage pointer |
|
| - | 147 | * |
|
| - | 148 | * We have it currently in K1, it is |
|
| - | 149 | * possible to have it separately in the future. |
|
| - | 150 | */ |
|
| - | 151 | __native sys_tls_set(__native addr) |
|
| - | 152 | { |
|
| - | 153 | return 0; |
|
| - | 154 | } |
|