Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TPosixCondition.h
Go to the documentation of this file.
1// @(#)root/thread:$Id$
2// Author: Fons Rademakers 01/07/97
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TPosixCondition
13#define ROOT_TPosixCondition
14
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TPosixCondition //
19// //
20// This class provides an interface to the posix condition variable //
21// routines. //
22// //
23//////////////////////////////////////////////////////////////////////////
24
25#include "TConditionImp.h"
26
27#include <pthread.h>
28
29class TMutexImp;
30class TPosixMutex;
31
32
34
35private:
36 pthread_cond_t fCond; // the pthread condition variable
37 TPosixMutex *fMutex; // mutex used around Wait() and TimedWait()
38
39public:
41 virtual ~TPosixCondition();
42
43 Int_t Wait() override;
44 Int_t TimedWait(ULong_t secs, ULong_t nanoSecs = 0) override;
45 Int_t Signal() override;
46 Int_t Broadcast() override;
47
48 ClassDefOverride(TPosixCondition,0) // Posix condition variable
49};
50
51#endif
unsigned long ULong_t
Definition RtypesCore.h:55
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
virtual ~TPosixCondition()
TCondition dtor.
Int_t Wait() override
Wait for the condition variable to be signalled.
Int_t Signal() override
If one or more threads have called Wait(), Signal() wakes up at least one of them,...
pthread_cond_t fCond
Int_t TimedWait(ULong_t secs, ULong_t nanoSecs=0) override
TimedWait() is given an absolute time to wait until.
Int_t Broadcast() override
Broadcast is like signal but wakes all threads which have called Wait().
TPosixMutex * fMutex
TMarker m
Definition textangle.C:8