Changeset 30576 in vbox
- Timestamp:
- Jul 2, 2010 12:53:46 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 63299
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/semeventmulti-r0drv-solaris.c
r30552 r30576 5 5 6 6 /* 7 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2010 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 61 61 /** The number of threads in the process of waking up, doubles up as a ref counter. */ 62 62 uint32_t volatile cWaking; 63 /** Object version indicating a valid signal event occurred. */63 /** Object version that is incremented every time the object is signaled. */ 64 64 uint32_t volatile u32Version; 65 65 /** The Solaris mutex protecting this structure and pairing up the with the cv. */ … … 280 280 { 281 281 /* Retured due to call to cv_signal() or cv_broadcast() */ 282 if (u32Version >u32VersionBeforeWait)282 if (u32Version != u32VersionBeforeWait) 283 283 { 284 284 rc = VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.