Rev 3431 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3431 | Rev 3597 | ||
|---|---|---|---|
| Line 257... | Line 257... | ||
| 257 | 257 | ||
| 258 | /** Fpu context slab cache. */ |
258 | /** Fpu context slab cache. */ |
| 259 | extern slab_cache_t *fpu_context_slab; |
259 | extern slab_cache_t *fpu_context_slab; |
| 260 | 260 | ||
| 261 | /* Thread syscall prototypes. */ |
261 | /* Thread syscall prototypes. */ |
| 262 | extern unative_t sys_thread_create(uspace_arg_t *uspace_uarg, char *uspace_name, thread_id_t *uspace_thread_id); |
262 | extern unative_t sys_thread_create(uspace_arg_t *uspace_uarg, |
| - | 263 | char *uspace_name, size_t name_len, thread_id_t *uspace_thread_id); |
|
| 263 | extern unative_t sys_thread_exit(int uspace_status); |
264 | extern unative_t sys_thread_exit(int uspace_status); |
| 264 | extern unative_t sys_thread_get_id(thread_id_t *uspace_thread_id); |
265 | extern unative_t sys_thread_get_id(thread_id_t *uspace_thread_id); |
| 265 | 266 | ||
| 266 | #endif |
267 | #endif |
| 267 | 268 | ||