summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2013-09-20 15:05:01 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2013-09-20 16:18:23 +0200
commite3dd7a480e45224884bf62393ebd258b254bbbaa (patch)
treee003cf8e713231d2c76baccd2df09f209bf13932
parentUse empty <sys/ucontext.h> (diff)
downloadrtems-libbsd-e3dd7a480e45224884bf62393ebd258b254bbbaa.tar.bz2
Avoid usage of stack_t type
-rw-r--r--freebsd/sys/proc.h2
1 files changed, 2 insertions, 0 deletions
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 *);