1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-18 02:19:39 +00:00

_tcb_ctor takes two args.

This commit is contained in:
Olivier Houchard 2004-09-24 13:02:30 +00:00
parent af50fa7e46
commit 99feca3bae
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=135735
4 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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 *);

View File

@ -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;

View File

@ -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 *);