From e3dd7a480e45224884bf62393ebd258b254bbbaa Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Fri, 20 Sep 2013 15:05:01 +0200 Subject: Avoid usage of stack_t type --- freebsd/sys/proc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/freebsd/sys/proc.h b/freebsd/sys/proc.h index 04022ee5..43c2044c 100644 --- a/freebsd/sys/proc.h +++ b/freebsd/sys/proc.h @@ -889,8 +889,10 @@ void cpu_fork(struct thread *, struct proc *, struct thread *, int); void cpu_set_fork_handler(struct thread *, void (*)(void *), void *); void cpu_set_syscall_retval(struct thread *, int); void cpu_set_upcall(struct thread *td, struct thread *td0); +#ifndef __rtems__ void cpu_set_upcall_kse(struct thread *, void (*)(void *), void *, stack_t *); +#endif /* __rtems__ */ int cpu_set_user_tls(struct thread *, void *tls_base); void cpu_thread_alloc(struct thread *); void cpu_thread_clean(struct thread *); -- cgit v1.2.3