Changeset 102209 in vbox for trunk/src/libs/xpcom18a4/nsprpub/pr
- Timestamp:
- Nov 21, 2023 2:04:02 PM (18 months ago)
- svn:sync-xref-src-repo-rev:
- 160334
- Location:
- trunk/src/libs/xpcom18a4/nsprpub/pr
- Files:
-
- 5 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/nsprpub/pr/include/md/prosdep.h
r101869 r102209 72 72 73 73 #include "md/_unixos.h" 74 #include "md/_unix_errors.h"75 74 76 75 #else -
trunk/src/libs/xpcom18a4/nsprpub/pr/include/nspr.h
r102200 r102209 42 42 #include "prclist.h" 43 43 #include "prcvar.h" 44 #include "prerror.h"45 44 #include "prinit.h" 46 45 #include "prinrval.h" -
trunk/src/libs/xpcom18a4/nsprpub/pr/include/private/primpl.h
r102203 r102209 255 255 PRUint32 tpdLength; /* thread's current vector length */ 256 256 void **privateData; /* private data vector or NULL */ 257 PRErrorCode errorCode; /* current NSPR error code | zero */258 PRInt32 osErrorCode; /* mapping of errorCode | zero */259 PRIntn errorStringLength; /* textLength from last call to PR_SetErrorText() */260 PRInt32 errorStringSize; /* malloc()'d size of buffer | zero */261 char *errorString; /* current error string | NULL */262 257 263 258 pthread_t id; /* pthread identifier for the thread */ -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/pthreads/ptsynch.c
r102202 r102209 369 369 if (rv != 0) 370 370 { 371 _PR_MD_MAP_DEFAULT_ERROR(rv);372 371 return PR_FAILURE; 373 372 } … … 375 374 376 375 aborted: 377 PR_SetError(PR_PENDING_INTERRUPT_ERROR, 0);378 376 thred->state &= ~PT_THREAD_ABORTED; 379 377 return PR_FAILURE; … … 410 408 if (NULL == cvar) 411 409 { 412 PR_SetError(PR_OUT_OF_MEMORY_ERROR, 0);413 410 return NULL; 414 411 } -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/pthreads/ptthread.c
r102202 r102209 148 148 149 149 PR_Free(thred->privateData); 150 if (NULL != thred->errorString)151 PR_Free(thred->errorString);152 150 if (NULL != thred->syspoll_list) 153 151 PR_Free(thred->syspoll_list);
Note:
See TracChangeset
for help on using the changeset viewer.