URI: 
       tlibthread: rm NetBSD pthread reference in sysofiles.sh - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit ac8042dfa9819f76ccfedd4aa36c1239322808b8
   DIR parent cb8f7357867a2a5d0bd742ceeb77bce9ad5f435c
  HTML Author: Russ Cox <rsc@swtch.com>
       Date:   Sun, 19 Jan 2020 21:14:20 -0500
       
       libthread: rm NetBSD pthread reference in sysofiles.sh
       
       It may be that pthreads on NetBSD is now good enough,
       but the build as written (introduced in 23a2368 at my suggestion)
       is certainly broken, since both NetBSD.c and pthread.c define
       tthe same functions.
       
       If NetBSD does support pthreads now, then a few things
       should happen together:
       
        - libthread/sysofiles.sh should drop its top NetBSD case entirely
        - libthread/NetBSD.c should be deleted
        - libthread/NetBSD-*-asm.s should be deleted
        - include/u.h's NetBSD case should define PLAN9PORT_USING_PTHREADS
          and #include <pthread.h>
       
       For now, restore to less clearly broken build.
       
       Diffstat:
         M src/libthread/sysofiles.sh          |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/src/libthread/sysofiles.sh b/src/libthread/sysofiles.sh
       t@@ -4,7 +4,7 @@ test -f $PLAN9/config && . $PLAN9/config
        
        case "$SYSNAME" in
        NetBSD)
       -        echo ${SYSNAME}-${OBJTYPE}-asm.o $SYSNAME.o pthread.o stkmalloc.o
       +        echo ${SYSNAME}-${OBJTYPE}-asm.o $SYSNAME.o stkmalloc.o
                ;;
        OpenBSD)
                echo ${SYSNAME}-${OBJTYPE}-asm.o ${SYSNAME}-${OBJTYPE}.o pthread.o stkmmap.o