VirtualBox

Changeset 31155 in vbox


Ignore:
Timestamp:
Jul 28, 2010 12:39:36 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
64133
Message:

iprt/condvar.h: condition variable spec.

Location:
trunk/include/iprt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/critsect.h

    r28800 r31155  
    44
    55/*
    6  * Copyright (C) 2006-2009 Oracle Corporation
     6 * Copyright (C) 2006-2010 Oracle Corporation
    77 *
    88 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    9090} RTCRITSECT;
    9191AssertCompileSize(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;
    9692
    9793/** RTCRITSECT::u32Magic value. (Hiromi Uehara) */
  • trunk/include/iprt/semaphore.h

    r28800 r31155  
    44
    55/*
    6  * Copyright (C) 2006-2007 Oracle Corporation
     6 * Copyright (C) 2006-2010 Oracle Corporation
    77 *
    88 * This file is part of VirtualBox Open Source Edition (OSE), as
  • trunk/include/iprt/types.h

    r30068 r31155  
    44
    55/*
    6  * Copyright (C) 2006-2007 Oracle Corporation
     6 * Copyright (C) 2006-2010 Oracle Corporation
    77 *
    88 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    11881188
    11891189
     1190/** Pointer to a critical section. */
     1191typedef struct RTCRITSECT                          *PRTCRITSECT;
     1192/** Pointer to a const critical section. */
     1193typedef const struct RTCRITSECT                    *PCRTCRITSECT;
     1194
     1195
     1196/** Condition variable handle. */
     1197typedef R3PTRTYPE(struct RTCONDVARINTERNAL *)       RTCONDVAR;
     1198/** Pointer to a condition variable handle. */
     1199typedef RTCONDVAR                                  *PRTCONDVAR;
     1200/** Nil condition variable handle. */
     1201#define NIL_RTCONDVAR                               0
     1202
    11901203/** File handle. */
    11911204typedef RTUINT                                      RTFILE;
Note: See TracChangeset for help on using the changeset viewer.

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