a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/synQueue.c src/lib/synQueue.c
index f90656b..7d18757 100644
--- src/lib/synQueue.c
+++ src/lib/synQueue.c
@@ -1,24 +1,23 @@
 /* synQueue - a sychronized message queue for messages between
  * threads. */
 
 #include "common.h"
 #include "dlist.h"
 #include "pthreadWrap.h"
 #include "synQueue.h"
 
-static char const rcsid[] = "$Id: synQueue.c,v 1.6 2006/03/11 23:07:02 kent Exp $";
 
 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. */
     };
 
 struct synQueue *synQueueNew()
 /* Make a new, empty, synQueue. */
 {
 struct synQueue *sq;
 AllocVar(sq);