VirtualBox

Changeset 102232 in vbox for trunk/src


Ignore:
Timestamp:
Nov 22, 2023 9:44:51 AM (17 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
160357
Message:

libs/xpcom: Remove public PR_Lock and PR_CondVar APIs as they are not used anywhere outside of NSPR, bugref:10545

Location:
trunk/src/libs/xpcom18a4
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/xpcom18a4/Makefile.kmk

    r102231 r102232  
    167167        nsprpub/pr/include/prbit.h \
    168168        nsprpub/pr/include/prclist.h \
    169         nsprpub/pr/include/prcvar.h \
    170169        nsprpub/pr/include/prinrval.h \
    171         nsprpub/pr/include/prlock.h \
    172170        nsprpub/pr/include/prlong.h \
    173171        nsprpub/pr/include/prmem.h \
  • trunk/src/libs/xpcom18a4/nsprpub/pr/include/nspr.h

    r102215 r102232  
    4141#include "prbit.h"
    4242#include "prclist.h"
    43 #include "prcvar.h"
    4443#include "prinrval.h"
    45 #include "prlock.h"
    4644#include "prlong.h"
    4745#include "prmem.h"
  • trunk/src/libs/xpcom18a4/nsprpub/pr/include/private/primpl.h

    r102225 r102232  
    5757typedef struct _MDLock _MDLock;
    5858typedef struct _MDCVar _MDCVar;
     59
     60typedef struct PRLock    PRLock;
     61typedef struct PRCondVar PRCondVar;
    5962
    6063/*
  • trunk/src/libs/xpcom18a4/nsprpub/pr/src/pthreads/ptsynch.c

    r102213 r102232  
    5151#include <iprt/assert.h>
    5252
    53 #ifdef VBOX
    54 /* From the removed obsolete/prsem.h */
    55 typedef struct PRSemaphore PRSemaphore;
    56 #endif
    57 
    5853static pthread_mutexattr_t _pt_mattr;
    5954static pthread_condattr_t _pt_cvar_attr;
     55
     56static void PR_DestroyCondVar(PRCondVar *cvar);
    6057
    6158/**************************************************************/
     
    139136}  /* pt_PostNotifies */
    140137
    141 PR_IMPLEMENT(PRLock*) PR_NewLock(void)
    142 {
    143     PRIntn rv;
    144     PRLock *lock;
    145 
    146     if (!_pr_initialized) _PR_ImplicitInitialization();
    147 
    148     lock = PR_NEWZAP(PRLock);
    149     if (lock != NULL)
    150     {
    151         rv = _PT_PTHREAD_MUTEX_INIT(lock->mutex, _pt_mattr);
    152         Assert(0 == rv);
    153     }
    154     return lock;
    155 }  /* PR_NewLock */
    156 
    157 PR_IMPLEMENT(void) PR_DestroyLock(PRLock *lock)
    158 {
    159     PRIntn rv;
    160     Assert(NULL != lock);
    161     Assert(PR_FALSE == lock->locked);
    162     Assert(0 == lock->notified.length);
    163     Assert(NULL == lock->notified.link);
    164     rv = pthread_mutex_destroy(&lock->mutex);
    165     Assert(0 == rv);
    166 #if defined(DEBUG)
    167     memset(lock, 0xaf, sizeof(PRLock));
    168 #endif
    169     PR_DELETE(lock);
    170 }  /* PR_DestroyLock */
    171 
    172 PR_IMPLEMENT(void) PR_Lock(PRLock *lock)
     138static void PR_Lock(PRLock *lock)
    173139{
    174140    PRIntn rv;
     
    183149}  /* PR_Lock */
    184150
    185 PR_IMPLEMENT(PRStatus) PR_Unlock(PRLock *lock)
     151static PRStatus PR_Unlock(PRLock *lock)
    186152{
    187153    PRIntn rv;
     
    296262}  /* pt_PostNotifyToCvar */
    297263
    298 PR_IMPLEMENT(PRCondVar*) PR_NewCondVar(PRLock *lock)
    299 {
    300     PRCondVar *cv = PR_NEW(PRCondVar);
    301     Assert(lock != NULL);
    302     if (cv != NULL)
    303     {
    304         int rv = _PT_PTHREAD_COND_INIT(cv->cv, _pt_cvar_attr);
    305         Assert(0 == rv);
    306         cv->lock = lock;
    307         cv->notify_pending = 0;
    308     }
    309     return cv;
    310 }  /* PR_NewCondVar */
    311 
    312 PR_IMPLEMENT(void) PR_DestroyCondVar(PRCondVar *cvar)
     264static void PR_DestroyCondVar(PRCondVar *cvar)
    313265{
    314266    if (0 > ASMAtomicDecS32(&cvar->notify_pending))
     
    364316}  /* PR_WaitCondVar */
    365317
    366 PR_IMPLEMENT(PRStatus) PR_NotifyCondVar(PRCondVar *cvar)
     318static PRStatus PR_NotifyCondVar(PRCondVar *cvar)
    367319{
    368320    Assert(cvar != NULL);   
     
    371323}  /* PR_NotifyCondVar */
    372324
    373 PR_IMPLEMENT(PRStatus) PR_NotifyAllCondVar(PRCondVar *cvar)
     325static PRStatus PR_NotifyAllCondVar(PRCondVar *cvar)
    374326{
    375327    Assert(cvar != NULL);
Note: See TracChangeset for help on using the changeset viewer.

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