1 | /* $Id: semnoint-generic.cpp 21337 2009-07-07 14:58:27Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Generic Non-Interruptable Wait and Request Functions.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | *
|
---|
26 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
27 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
28 | * additional information or have any questions.
|
---|
29 | */
|
---|
30 |
|
---|
31 |
|
---|
32 | /*******************************************************************************
|
---|
33 | * Header Files *
|
---|
34 | *******************************************************************************/
|
---|
35 | #define LOG_GROUP RTLOGGROUP_SEM
|
---|
36 | #include <iprt/semaphore.h>
|
---|
37 | #include "internal/iprt.h"
|
---|
38 |
|
---|
39 | #include <iprt/time.h>
|
---|
40 | #include <iprt/err.h>
|
---|
41 | #include <iprt/assert.h>
|
---|
42 |
|
---|
43 |
|
---|
44 |
|
---|
45 | RTDECL(int) RTSemEventWait(RTSEMEVENT EventSem, unsigned cMillies)
|
---|
46 | {
|
---|
47 | int rc;
|
---|
48 | if (cMillies == RT_INDEFINITE_WAIT)
|
---|
49 | {
|
---|
50 | do rc = RTSemEventWaitNoResume(EventSem, cMillies);
|
---|
51 | while (rc == VERR_INTERRUPTED);
|
---|
52 | }
|
---|
53 | else
|
---|
54 | {
|
---|
55 | const uint64_t u64Start = RTTimeMilliTS();
|
---|
56 | rc = RTSemEventWaitNoResume(EventSem, cMillies);
|
---|
57 | if (rc == VERR_INTERRUPTED)
|
---|
58 | {
|
---|
59 | do
|
---|
60 | {
|
---|
61 | uint64_t u64Elapsed = RTTimeMilliTS() - u64Start;
|
---|
62 | if (u64Elapsed >= cMillies)
|
---|
63 | return VERR_TIMEOUT;
|
---|
64 | rc = RTSemEventWaitNoResume(EventSem, cMillies - (unsigned)u64Elapsed);
|
---|
65 | } while (rc == VERR_INTERRUPTED);
|
---|
66 | }
|
---|
67 | }
|
---|
68 | return rc;
|
---|
69 | }
|
---|
70 | RT_EXPORT_SYMBOL(RTSemEventWait);
|
---|
71 |
|
---|
72 |
|
---|
73 | RTDECL(int) RTSemEventMultiWait(RTSEMEVENTMULTI EventSem, unsigned cMillies)
|
---|
74 | {
|
---|
75 | int rc;
|
---|
76 | if (cMillies == RT_INDEFINITE_WAIT)
|
---|
77 | {
|
---|
78 | do rc = RTSemEventMultiWaitNoResume(EventSem, cMillies);
|
---|
79 | while (rc == VERR_INTERRUPTED);
|
---|
80 | }
|
---|
81 | else
|
---|
82 | {
|
---|
83 | const uint64_t u64Start = RTTimeMilliTS();
|
---|
84 | rc = RTSemEventMultiWaitNoResume(EventSem, cMillies);
|
---|
85 | if (rc == VERR_INTERRUPTED)
|
---|
86 | {
|
---|
87 | do
|
---|
88 | {
|
---|
89 | uint64_t u64Elapsed = RTTimeMilliTS() - u64Start;
|
---|
90 | if (u64Elapsed >= cMillies)
|
---|
91 | return VERR_TIMEOUT;
|
---|
92 | rc = RTSemEventMultiWaitNoResume(EventSem, cMillies - (unsigned)u64Elapsed);
|
---|
93 | } while (rc == VERR_INTERRUPTED);
|
---|
94 | }
|
---|
95 | }
|
---|
96 | return rc;
|
---|
97 | }
|
---|
98 | RT_EXPORT_SYMBOL(RTSemEventMultiWait);
|
---|
99 |
|
---|
100 |
|
---|
101 | RTDECL(int) RTSemMutexRequest(RTSEMMUTEX Mutex, unsigned cMillies)
|
---|
102 | {
|
---|
103 | int rc;
|
---|
104 | if (cMillies == RT_INDEFINITE_WAIT)
|
---|
105 | {
|
---|
106 | do rc = RTSemMutexRequestNoResume(Mutex, cMillies);
|
---|
107 | while (rc == VERR_INTERRUPTED);
|
---|
108 | }
|
---|
109 | else
|
---|
110 | {
|
---|
111 | const uint64_t u64Start = RTTimeMilliTS();
|
---|
112 | rc = RTSemMutexRequestNoResume(Mutex, cMillies);
|
---|
113 | if (rc == VERR_INTERRUPTED)
|
---|
114 | {
|
---|
115 | do
|
---|
116 | {
|
---|
117 | uint64_t u64Elapsed = RTTimeMilliTS() - u64Start;
|
---|
118 | if (u64Elapsed >= cMillies)
|
---|
119 | return VERR_TIMEOUT;
|
---|
120 | rc = RTSemMutexRequestNoResume(Mutex, cMillies - (unsigned)u64Elapsed);
|
---|
121 | } while (rc == VERR_INTERRUPTED);
|
---|
122 | }
|
---|
123 | }
|
---|
124 | return rc;
|
---|
125 | }
|
---|
126 | RT_EXPORT_SYMBOL(RTSemMutexRequest);
|
---|
127 |
|
---|