diff options
| author | Olivier Houchard <cognet@FreeBSD.org> | 2004-09-24 13:02:30 +0000 |
|---|---|---|
| committer | Olivier Houchard <cognet@FreeBSD.org> | 2004-09-24 13:02:30 +0000 |
| commit | 99feca3bae9a9b88d006b663c396889fac2fc19e (patch) | |
| tree | 2bb6e0b9776941de7525c7d529b02e2f2b337da2 /lib/libpthread | |
| parent | af50fa7e46b03108ad8b5a86b244340d800ffb37 (diff) | |
Notes
Diffstat (limited to 'lib/libpthread')
| -rw-r--r-- | lib/libpthread/arch/arm/arm/pthread_md.c | 2 | ||||
| -rw-r--r-- | lib/libpthread/arch/arm/include/pthread_md.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/arch/arm/arm/pthread_md.c b/lib/libpthread/arch/arm/arm/pthread_md.c index b012651bbb57..d6bf95d00d6d 100644 --- a/lib/libpthread/arch/arm/arm/pthread_md.c +++ b/lib/libpthread/arch/arm/arm/pthread_md.c @@ -40,7 +40,7 @@ __FBSDID("$FreeBSD$"); #include "pthread_md.h" struct tcb * -_tcb_ctor(struct pthread *thread) +_tcb_ctor(struct pthread *thread, int initial) { struct tcb *tcb; void *addr; diff --git a/lib/libpthread/arch/arm/include/pthread_md.h b/lib/libpthread/arch/arm/include/pthread_md.h index ac0db534f72e..5fa0a85c92b6 100644 --- a/lib/libpthread/arch/arm/include/pthread_md.h +++ b/lib/libpthread/arch/arm/include/pthread_md.h @@ -92,7 +92,7 @@ register struct arm_tp *_tp __asm("%r6"); /* * The kcb and tcb constructors. */ -struct tcb *_tcb_ctor(struct pthread *); +struct tcb *_tcb_ctor(struct pthread *, int); void _tcb_dtor(struct tcb *); struct kcb *_kcb_ctor(struct kse *kse); void _kcb_dtor(struct kcb *); |
