blob: 74669037a4589c9994aeb312eb2c3ba6f24f7c00 (
plain)
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
|
/* -*- C++ -*- */
// $Id$
// Token.i
ACE_INLINE int
ACE_Token::remove (void)
{
ACE_TRACE ("ACE_Token::remove");
// Don't have an implementation for this yet...
errno = ENOTSUP;
return -1;
}
ACE_INLINE int
ACE_Token::tryacquire (void)
{
ACE_TRACE ("ACE_Token::tryacquire");
return this->shared_acquire
(0, 0, (ACE_Time_Value *) &ACE_Time_Value::zero);
}
ACE_INLINE int
ACE_Token::waiters (void)
{
ACE_TRACE ("ACE_Token::waiters");
ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, -1);
int ret = this->waiters_;
return ret;
}
ACE_INLINE ACE_thread_t
ACE_Token::current_owner (void)
{
ACE_TRACE ("ACE_Token::current_owner");
ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, this->owner_);
return this->owner_;
}
|