4898794edd81be5285ea6e544acbedeaeb31bf78 max Tue Nov 23 08:10:57 2021 -0800 Fixing pointers to README file for license in all source code files. refs #27614 diff --git src/lib/pthreadWrap.c src/lib/pthreadWrap.c index f532e2d..66bf02a 100644 --- src/lib/pthreadWrap.c +++ src/lib/pthreadWrap.c @@ -1,22 +1,22 @@ /* pthreadWrap - error checking wrappers around Posix * thread functions. Most of the errors here are invariably * fatal, but shouldn't happen unless the kernal or * the program is hosed. */ /* Copyright (C) 2011 The Regents of the University of California - * See README in this or parent directory for licensing information. */ + * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */ #include "common.h" #include "errAbort.h" #include "pthreadWrap.h" static void pwarn(char *function, int err) /* Print a warning message on non-zero error code. */ { if (err != 0) warn("Couldn't %s: %s\n", function, strerror(err)); } static void perr(char *function, int err) /* Print out error for function and abort on