blob: 18f667156edae3af69be0d41ac6bc2fa85efdb4f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
//
// Event_POSIX.cpp
//
// Library: Foundation
// Package: Threading
// Module: Event
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/Event_VX.h"
#include <sysLib.h>
namespace Poco {
EventImpl::EventImpl(bool autoReset): _auto(autoReset), _state(false)
{
_sem = semCCreate(SEM_Q_PRIORITY, 0);
if (_sem == 0)
throw Poco::SystemException("cannot create event");
}
EventImpl::~EventImpl()
{
semDelete(_sem);
}
void EventImpl::setImpl()
{
if (_auto)
{
if (semGive(_sem) != OK)
throw SystemException("cannot set event");
}
else
{
_state = true;
if (semFlush(_sem) != OK)
throw SystemException("cannot set event");
}
}
void EventImpl::resetImpl()
{
_state = false;
}
void EventImpl::waitImpl()
{
if (!_state)
{
if (semTake(_sem, WAIT_FOREVER) != OK)
throw SystemException("cannot wait for event");
}
}
bool EventImpl::waitImpl(long milliseconds)
{
if (!_state)
{
int ticks = milliseconds*sysClkRateGet()/1000;
return semTake(_sem, ticks) == OK;
}
else return true;
}
} // namespace Poco
|