e70152e44cc66cc599ff6b699eb8adc07f3e656a kent Sat May 24 21:09:34 2014 -0700 Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment. diff --git src/lib/pthreadWrap.c src/lib/pthreadWrap.c index fcc89b3..fdaf850 100644 --- src/lib/pthreadWrap.c +++ src/lib/pthreadWrap.c @@ -1,20 +1,23 @@ /* 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. */ + #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 * non-zero error code.. */