Blob


1 <$PLAN9/src/mkhdr
3 SYSOFILES=`{sh ./sysofiles.sh}
4 LIB=libthread.a
5 OFILES=\
6 $SYSOFILES\
7 channel.$O\
8 daemonize.$O\
9 exec.$O\
10 ioproc.$O\
11 iorw.$O\
12 ref.$O\
13 thread.$O\
15 <$PLAN9/src/mksyslib
17 HFILES=thread.h threadimpl.h
19 tprimes: tprimes.$O
20 9l -o $target $target.$O $PLAN9/lib/$LIB -l9 -lpthread
21 tspawn: tspawn.$O
22 9l -o $target $target.$O $PLAN9/lib/$LIB -l9 -lpthread
23 tspawnloop: tspawnloop.$O
24 9l -o $target $target.$O $PLAN9/lib/$LIB -l9 -lpthread
26 %.$O: %.c
27 9c -I. $stem.c
29 test:V: tprimes tspawn
30 primes 1 10007 >p1.txt
31 $PLAN9/bin/time ./tprimes 10000 >tp1.txt
32 cmp p1.txt tp1.txt
33 primes 1 1009 >p2.txt
34 $PLAN9/bin/time ./tprimes 1000 >tp2.txt
35 cmp p2.txt tp2.txt
36 echo tspawn should take 3 seconds, not 6
37 $PLAN9/bin/time ./tspawn sleep 3 >/dev/null
39 CLEANFILES=p1.txt p2.txt tp1.txt tp2.txt