Logo ROOT  
Reference Guide
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Loading...
Searching...
No Matches
TPosixCondition.cxx
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//////////////////////////////////////////////////////////////////////////
13// //
14// TPosixCondition //
15// //
16// This class provides an interface to the posix condition variable //
17// routines. //
18// //
19//////////////////////////////////////////////////////////////////////////
20
21#include "TPosixCondition.h"
22#include "TPosixMutex.h"
23#include "PosixThreadInc.h"
24
25#include <errno.h>
26
27
29
30////////////////////////////////////////////////////////////////////////////////
31/// Create Condition variable. Ctor must be given a pointer to an
32/// existing mutex. The condition variable is then linked to the mutex,
33/// so that there is an implicit unlock and lock around Wait() and
34/// TimedWait().
35
37{
38 fMutex = (TPosixMutex *) m;
39
40 int rc = pthread_cond_init(&fCond, 0);
41
42 if (rc)
43 SysError("TPosixCondition", "pthread_cond_init error");
44}
45
46////////////////////////////////////////////////////////////////////////////////
47/// TCondition dtor.
48
50{
52
53 if (rc)
54 SysError("~TPosixCondition", "pthread_cond_destroy error");
55}
56
57////////////////////////////////////////////////////////////////////////////////
58/// Wait for the condition variable to be signalled. The mutex is
59/// implicitely released before waiting and locked again after waking up.
60/// If Wait() is called by multiple threads, a signal may wake up more
61/// than one thread. See POSIX threads documentation for details.
62
67
68////////////////////////////////////////////////////////////////////////////////
69/// TimedWait() is given an absolute time to wait until. To wait for a
70/// relative time from now, use TThread::GetTime(). See POSIX threads
71/// documentation for why absolute times are better than relative.
72/// Returns 0 if successfully signalled, 1 if time expired.
73
85
86////////////////////////////////////////////////////////////////////////////////
87/// If one or more threads have called Wait(), Signal() wakes up at least
88/// one of them, possibly more. See POSIX threads documentation for details.
89
94
95
96////////////////////////////////////////////////////////////////////////////////
97/// Broadcast is like signal but wakes all threads which have called Wait().
98
unsigned long ULong_t
Definition RtypesCore.h:55
long Long_t
Definition RtypesCore.h:54
#define ClassImp(name)
Definition Rtypes.h:377
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
virtual void SysError(const char *method, const char *msgfmt,...) const
Issue system error message.
Definition TObject.cxx:1001
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,...
TPosixCondition(TMutexImp *m)
Create Condition variable.
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
pthread_mutex_t fMutex
Definition TPosixMutex.h:33
TMarker m
Definition textangle.C:8