Changeset 101811 in vbox for trunk/src/libs/xpcom18a4/nsprpub
- Timestamp:
- Nov 5, 2023 10:14:34 AM (15 months ago)
- Location:
- trunk/src/libs/xpcom18a4/nsprpub/pr
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/nsprpub/pr/include/private/primpl.h
r101806 r101811 675 675 #define _PR_MD_ATOMIC_SET _MD_ATOMIC_SET 676 676 677 /* Garbage collection */678 679 /*680 ** Save the registers that the GC would find interesting into the thread681 ** "t". isCurrent will be non-zero if the thread state that is being682 ** saved is the currently executing thread. Return the address of the683 ** first register to be scanned as well as the number of registers to684 ** scan in "np".685 **686 ** If "isCurrent" is non-zero then it is allowed for the thread context687 ** area to be used as scratch storage to hold just the registers688 ** necessary for scanning.689 */690 extern PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np);691 692 677 /* Time intervals */ 693 678 -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/darwin.c
r101805 r101811 42 42 } 43 43 44 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np)45 {46 *np = 0;47 return NULL;48 }49 50 44 /* darwin.c */ 51 45 -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/freebsd.c
r101805 r101811 54 54 } 55 55 56 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np)57 {58 *np = 0;59 return NULL;60 }61 -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/linux.c
r101805 r101811 42 42 } 43 43 44 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np)45 {46 *np = 0;47 return NULL;48 }49 50 44 extern void _MD_unix_terminate_waitpid_daemon(void); 51 45 -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/netbsd.c
r101805 r101811 56 56 } 57 57 58 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np)59 {60 *np = 0;61 return NULL;62 }63 -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/openbsd.c
r101805 r101811 56 56 } 57 57 58 PRWord *_MD_HomeGCRegisters(PRThread *t, int isCurrent, int *np)59 {60 *np = 0;61 return NULL;62 }63 -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/md/unix/solaris.c
r101810 r101811 79 79 } 80 80 81 PRWord *_MD_HomeGCRegisters(PRThread *t, PRIntn isCurrent, PRIntn *np)82 {83 *np = 0;84 return NULL;85 }86
Note:
See TracChangeset
for help on using the changeset viewer.