VirtualBox

source: vbox/trunk/src/VBox/Runtime/generic/semnoint-generic.cpp@ 8155

Last change on this file since 8155 was 8155, checked in by vboxsync, 16 years ago

The Big Sun Rebranding Header Change

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.9 KB
Line 
1/* $Id: semnoint-generic.cpp 8155 2008-04-18 15:16:47Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - 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 <iprt/time.h>
38#include <iprt/err.h>
39#include <iprt/assert.h>
40
41
42
43RTDECL(int) RTSemEventWait(RTSEMEVENT EventSem, unsigned cMillies)
44{
45 int rc;
46 if (cMillies == RT_INDEFINITE_WAIT)
47 {
48 do rc = RTSemEventWaitNoResume(EventSem, cMillies);
49 while (rc == VERR_INTERRUPTED);
50 }
51 else
52 {
53 const uint64_t u64Start = RTTimeMilliTS();
54 rc = RTSemEventWaitNoResume(EventSem, cMillies);
55 if (rc == VERR_INTERRUPTED)
56 {
57 do
58 {
59 uint64_t u64Elapsed = RTTimeMilliTS() - u64Start;
60 if (u64Elapsed >= cMillies)
61 return VERR_TIMEOUT;
62 rc = RTSemEventWaitNoResume(EventSem, cMillies - (unsigned)u64Elapsed);
63 } while (rc == VERR_INTERRUPTED);
64 }
65 }
66 return rc;
67}
68
69
70RTDECL(int) RTSemEventMultiWait(RTSEMEVENTMULTI EventSem, unsigned cMillies)
71{
72 int rc;
73 if (cMillies == RT_INDEFINITE_WAIT)
74 {
75 do rc = RTSemEventMultiWaitNoResume(EventSem, cMillies);
76 while (rc == VERR_INTERRUPTED);
77 }
78 else
79 {
80 const uint64_t u64Start = RTTimeMilliTS();
81 rc = RTSemEventMultiWaitNoResume(EventSem, cMillies);
82 if (rc == VERR_INTERRUPTED)
83 {
84 do
85 {
86 uint64_t u64Elapsed = RTTimeMilliTS() - u64Start;
87 if (u64Elapsed >= cMillies)
88 return VERR_TIMEOUT;
89 rc = RTSemEventMultiWaitNoResume(EventSem, cMillies - (unsigned)u64Elapsed);
90 } while (rc == VERR_INTERRUPTED);
91 }
92 }
93 return rc;
94}
95
96
97RTDECL(int) RTSemMutexRequest(RTSEMMUTEX Mutex, unsigned cMillies)
98{
99 int rc;
100 if (cMillies == RT_INDEFINITE_WAIT)
101 {
102 do rc = RTSemMutexRequestNoResume(Mutex, cMillies);
103 while (rc == VERR_INTERRUPTED);
104 }
105 else
106 {
107 const uint64_t u64Start = RTTimeMilliTS();
108 rc = RTSemMutexRequestNoResume(Mutex, cMillies);
109 if (rc == VERR_INTERRUPTED)
110 {
111 do
112 {
113 uint64_t u64Elapsed = RTTimeMilliTS() - u64Start;
114 if (u64Elapsed >= cMillies)
115 return VERR_TIMEOUT;
116 rc = RTSemMutexRequestNoResume(Mutex, cMillies - (unsigned)u64Elapsed);
117 } while (rc == VERR_INTERRUPTED);
118 }
119 }
120 return rc;
121}
122
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette