Changeset 31155 in vbox
- Timestamp:
- Jul 28, 2010 12:39:36 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64133
- Location:
- trunk/include/iprt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/critsect.h
r28800 r31155 4 4 5 5 /* 6 * Copyright (C) 2006-20 09Oracle Corporation6 * Copyright (C) 2006-2010 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 90 90 } RTCRITSECT; 91 91 AssertCompileSize(RTCRITSECT, HC_ARCH_BITS == 32 ? 32 : 48); 92 /** Pointer to a critical section. */93 typedef RTCRITSECT *PRTCRITSECT;94 /** Pointer to a const critical section. */95 typedef const RTCRITSECT *PCRTCRITSECT;96 92 97 93 /** RTCRITSECT::u32Magic value. (Hiromi Uehara) */ -
trunk/include/iprt/semaphore.h
r28800 r31155 4 4 5 5 /* 6 * Copyright (C) 2006-20 07Oracle Corporation6 * Copyright (C) 2006-2010 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/include/iprt/types.h
r30068 r31155 4 4 5 5 /* 6 * Copyright (C) 2006-20 07Oracle Corporation6 * Copyright (C) 2006-2010 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1188 1188 1189 1189 1190 /** Pointer to a critical section. */ 1191 typedef struct RTCRITSECT *PRTCRITSECT; 1192 /** Pointer to a const critical section. */ 1193 typedef const struct RTCRITSECT *PCRTCRITSECT; 1194 1195 1196 /** Condition variable handle. */ 1197 typedef R3PTRTYPE(struct RTCONDVARINTERNAL *) RTCONDVAR; 1198 /** Pointer to a condition variable handle. */ 1199 typedef RTCONDVAR *PRTCONDVAR; 1200 /** Nil condition variable handle. */ 1201 #define NIL_RTCONDVAR 0 1202 1190 1203 /** File handle. */ 1191 1204 typedef RTUINT RTFILE;
Note:
See TracChangeset
for help on using the changeset viewer.