- Timestamp:
- Nov 22, 2023 9:44:51 AM (17 months ago)
- svn:sync-xref-src-repo-rev:
- 160357
- Location:
- trunk/src/libs/xpcom18a4
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/Makefile.kmk
r102231 r102232 167 167 nsprpub/pr/include/prbit.h \ 168 168 nsprpub/pr/include/prclist.h \ 169 nsprpub/pr/include/prcvar.h \170 169 nsprpub/pr/include/prinrval.h \ 171 nsprpub/pr/include/prlock.h \172 170 nsprpub/pr/include/prlong.h \ 173 171 nsprpub/pr/include/prmem.h \ -
trunk/src/libs/xpcom18a4/nsprpub/pr/include/nspr.h
r102215 r102232 41 41 #include "prbit.h" 42 42 #include "prclist.h" 43 #include "prcvar.h"44 43 #include "prinrval.h" 45 #include "prlock.h"46 44 #include "prlong.h" 47 45 #include "prmem.h" -
trunk/src/libs/xpcom18a4/nsprpub/pr/include/private/primpl.h
r102225 r102232 57 57 typedef struct _MDLock _MDLock; 58 58 typedef struct _MDCVar _MDCVar; 59 60 typedef struct PRLock PRLock; 61 typedef struct PRCondVar PRCondVar; 59 62 60 63 /* -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/pthreads/ptsynch.c
r102213 r102232 51 51 #include <iprt/assert.h> 52 52 53 #ifdef VBOX54 /* From the removed obsolete/prsem.h */55 typedef struct PRSemaphore PRSemaphore;56 #endif57 58 53 static pthread_mutexattr_t _pt_mattr; 59 54 static pthread_condattr_t _pt_cvar_attr; 55 56 static void PR_DestroyCondVar(PRCondVar *cvar); 60 57 61 58 /**************************************************************/ … … 139 136 } /* pt_PostNotifies */ 140 137 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) 138 static void PR_Lock(PRLock *lock) 173 139 { 174 140 PRIntn rv; … … 183 149 } /* PR_Lock */ 184 150 185 PR_IMPLEMENT(PRStatus)PR_Unlock(PRLock *lock)151 static PRStatus PR_Unlock(PRLock *lock) 186 152 { 187 153 PRIntn rv; … … 296 262 } /* pt_PostNotifyToCvar */ 297 263 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) 264 static void PR_DestroyCondVar(PRCondVar *cvar) 313 265 { 314 266 if (0 > ASMAtomicDecS32(&cvar->notify_pending)) … … 364 316 } /* PR_WaitCondVar */ 365 317 366 PR_IMPLEMENT(PRStatus)PR_NotifyCondVar(PRCondVar *cvar)318 static PRStatus PR_NotifyCondVar(PRCondVar *cvar) 367 319 { 368 320 Assert(cvar != NULL); … … 371 323 } /* PR_NotifyCondVar */ 372 324 373 PR_IMPLEMENT(PRStatus)PR_NotifyAllCondVar(PRCondVar *cvar)325 static PRStatus PR_NotifyAllCondVar(PRCondVar *cvar) 374 326 { 375 327 Assert(cvar != NULL);
Note:
See TracChangeset
for help on using the changeset viewer.