summaryrefslogtreecommitdiff
path: root/ringbuffer.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-10-18 11:14:33 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-10-18 11:14:33 +0200
commit15816ee8e4a1be96bba1da9199739f1666a87703 (patch)
tree98971a87a165639a7785aaaf8ff59421680cdba3 /ringbuffer.h
parentf1a4d067be7113ac1418791fa0b0818800773418 (diff)
downloadvdr-15816ee8e4a1be96bba1da9199739f1666a87703.tar.gz
vdr-15816ee8e4a1be96bba1da9199739f1666a87703.tar.bz2
Changed thread handling to make it work with NPTL
Diffstat (limited to 'ringbuffer.h')
-rw-r--r--ringbuffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ringbuffer.h b/ringbuffer.h
index 15063454..ca5b2069 100644
--- a/ringbuffer.h
+++ b/ringbuffer.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: ringbuffer.h 1.12 2003/05/12 17:35:10 kls Exp $
+ * $Id: ringbuffer.h 1.13 2003/10/18 10:29:25 kls Exp $
*/
#ifndef __RINGBUFFER_H
@@ -46,7 +46,7 @@ private:
int margin, head, tail;
int lastGet;
uchar *buffer;
- pid_t getThreadPid;
+ pthread_t getThreadTid;
public:
cRingBufferLinear(int Size, int Margin = 0, bool Statistics = false);
///< Creates a linear ring buffer.