2 * This file is part of the libCEC(R) library.
4 * libCEC(R) is Copyright (C) 2011 Pulse-Eight Limited. All rights reserved.
5 * libCEC(R) is an original work, containing original code.
7 * libCEC(R) is a trademark of Pulse-Eight Limited.
9 * This program is dual-licensed; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 * Alternatively, you can license this library under a commercial license,
25 * please contact Pulse-Eight Licensing for more information.
27 * For more information contact:
28 * Pulse-Eight Licensing <license@pulse-eight.com>
29 * http://www.pulse-eight.com/
30 * http://www.pulse-eight.net/
34 #include "timeutils.h"
40 pthread_mutex_init(&m_mutex
, NULL
);
45 pthread_mutex_destroy(&m_mutex
);
48 bool CMutex::TryLock(void)
50 return (pthread_mutex_trylock(&m_mutex
) == 0);
53 bool CMutex::Lock(void)
55 return (pthread_mutex_lock(&m_mutex
) == 0);
58 void CMutex::Unlock(void)
60 pthread_mutex_unlock(&m_mutex
);
63 CLockObject::CLockObject(CMutex
*mutex
) :
69 CLockObject::~CLockObject(void)
75 void CLockObject::Leave(void)
80 void CLockObject::Lock(void)
85 CCondition::CCondition(void)
87 pthread_cond_init(&m_cond
, NULL
);
90 CCondition::~CCondition(void)
92 pthread_cond_broadcast(&m_cond
);
93 pthread_cond_destroy(&m_cond
);
96 void CCondition::Signal(void)
98 pthread_cond_broadcast(&m_cond
);
101 bool CCondition::Wait(CMutex
*mutex
, int64_t iTimeout
)
104 struct timespec abstime
;
106 if (gettimeofday(&now
, NULL
) == 0)
108 iTimeout
+= now
.tv_usec
/ 1000;
109 abstime
.tv_sec
= now
.tv_sec
+ (time_t)(iTimeout
/ 1000);
110 abstime
.tv_nsec
= (long)((iTimeout
% (unsigned long)1000) * (unsigned long)1000000);
111 bReturn
= (pthread_cond_timedwait(&m_cond
, &mutex
->m_mutex
, &abstime
) == 0);
117 void CCondition::Sleep(int iTimeout
)
122 CLockObject
lock(&m
);
123 w
.Wait(&m
, int64_t(iTimeout
));
126 CThread::CThread(void) :
132 CThread::~CThread(void)
135 pthread_join(m_thread
, NULL
);
138 bool CThread::CreateThread(void)
142 if (!m_bRunning
&& pthread_create(&m_thread
, NULL
, (void *(*) (void *))&CThread::ThreadHandler
, (void *)this) == 0)
145 pthread_detach(m_thread
);
152 void *CThread::ThreadHandler(CThread
*thread
)
155 return thread
->Process();
159 void CThread::StopThread(bool bWaitForExit
/* = true */)
163 pthread_join(m_thread
, NULL
);