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/synQueue.c src/lib/synQueue.c index 7d18757..a6e322c 100644 --- src/lib/synQueue.c +++ src/lib/synQueue.c @@ -1,18 +1,21 @@ /* synQueue - a sychronized message queue for messages between * threads. */ +/* Copyright (C) 2011 The Regents of the University of California + * See README in this or parent directory for licensing information. */ + #include "common.h" #include "dlist.h" #include "pthreadWrap.h" #include "synQueue.h" struct synQueue /* A synchronized queue for messages between threads. */ { struct synQueue *next; /* Next in list of queues. */ struct dlList *queue; /* The queue itself. */ pthread_mutex_t mutex; /* Mutex to prevent simultanious access. */ pthread_cond_t cond; /* Conditional to allow waiting until non-empty. */ };