remove debugging
This commit is contained in:
parent
f5ff4947dd
commit
93eb807ac2
4 changed files with 8 additions and 5 deletions
|
|
@ -8,9 +8,6 @@
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
#include "threadimpl.h"
|
#include "threadimpl.h"
|
||||||
|
|
||||||
int ngetpid;
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* spin locks
|
* spin locks
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<$PLAN9/src/mkhdr
|
<$PLAN9/src/mkhdr
|
||||||
|
|
||||||
SYSOFILES=`{sh ./sysofiles.sh}
|
SYSOFILES=`{sh ./sysofiles.sh}
|
||||||
|
x=`{echo $SYSOFILES> xx}
|
||||||
LIB=libthread.a
|
LIB=libthread.a
|
||||||
OFILES=\
|
OFILES=\
|
||||||
$SYSOFILES\
|
$SYSOFILES\
|
||||||
|
|
|
||||||
|
|
@ -130,3 +130,9 @@ _pthreadinit(void)
|
||||||
pthread_key_create(&prockey, 0);
|
pthread_key_create(&prockey, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
threadexitsall(char *msg)
|
||||||
|
{
|
||||||
|
exits(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
tag="${SYSNAME:-`uname -m`}-${OBJTYPE:-`uname`}-`uname -r`-${CC9:-cc}"
|
tag="${OBJTYPE:-`uname -m`}-${SYSNAME:-`uname`}-`uname -r`-${CC9:-cc}"
|
||||||
case "$tag" in
|
case "$tag" in
|
||||||
*-Linux-2.6.*)
|
*-Linux-2.6.*)
|
||||||
echo pthread.o
|
echo pthread.o
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue