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 "threadimpl.h"
|
||||
|
||||
int ngetpid;
|
||||
|
||||
|
||||
/*
|
||||
* spin locks
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<$PLAN9/src/mkhdr
|
||||
|
||||
SYSOFILES=`{sh ./sysofiles.sh}
|
||||
|
||||
x=`{echo $SYSOFILES> xx}
|
||||
LIB=libthread.a
|
||||
OFILES=\
|
||||
$SYSOFILES\
|
||||
|
|
|
|||
|
|
@ -130,3 +130,9 @@ _pthreadinit(void)
|
|||
pthread_key_create(&prockey, 0);
|
||||
}
|
||||
|
||||
void
|
||||
threadexitsall(char *msg)
|
||||
{
|
||||
exits(msg);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
#!/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
|
||||
*-Linux-2.6.*)
|
||||
echo pthread.o
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue