Remove unused variable.

Reviewed by: cognet
This commit is contained in:
David Xu 2005-10-29 13:40:31 +00:00
parent 33b222b992
commit c09df63bb9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=151859
2 changed files with 0 additions and 9 deletions

View File

@ -32,10 +32,6 @@
#include "pthread_md.h"
struct umtx arm_umtx = {
.u_owner = UMTX_UNOWNED
};
struct tcb *
_tcb_ctor(struct pthread *thread, int initial)
{

View File

@ -35,9 +35,6 @@
#include <sys/types.h>
#include <machine/sysarch.h>
#include <stddef.h>
#include <errno.h>
#include <sys/umtx.h>
#define DTV_OFFSET offsetof(struct tcb, tcb_dtv)
@ -83,6 +80,4 @@ _get_curthread(void)
return (NULL);
}
extern struct umtx arm_umtx;
#endif /* _PTHREAD_MD_H_ */