Changeset 102243 in vbox
- Timestamp:
- Nov 22, 2023 10:39:39 AM (12 months ago)
- Location:
- trunk/src/libs/xpcom18a4
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/Makefile.kmk
r102241 r102243 61 61 INSTALLS += \ 62 62 NSPRPUB-HEADERS \ 63 NSPRPUB-MD-HEADERS \64 63 STRING-HEADERS \ 65 64 XPCOM-HEADERS \ … … 175 174 nsprpub/pr/include/prtypes.h \ 176 175 nsprpub/pr/include/md/_vbox.cfg=>prcpucfg.h 177 NSPRPUB-MD-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/nsprpub/md/178 NSPRPUB-MD-HEADERS_IFFLAGS = -m 644179 NSPRPUB-MD-HEADERS_SOURCES = \180 nsprpub/pr/include/md/prosdep.h181 176 182 177 STRING-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/string/ -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/io/prprf.c
r102223 r102243 45 45 #include <stdio.h> 46 46 #include <string.h> 47 #include "primpl.h"48 47 #include "prprf.h" 49 48 #include "prlong.h" -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/misc/prinrval.c
r102234 r102243 40 40 * description: implementation for the kernel interval timing functions 41 41 */ 42 43 #include "primpl.h" 42 #include "nspr.h" 44 43 45 44 #include <signal.h> … … 79 78 PRIntervalTime ticks; 80 79 81 (void) GETTIMEOFDAY(&time); /* fallicy of course */80 (void)gettimeofday(&time,NULL); /* fallicy of course */ 82 81 ticks = (PRUint32)time.tv_sec * PR_MSEC_PER_SEC; /* that's in milliseconds */ 83 82 ticks += (PRUint32)time.tv_usec / PR_USEC_PER_MSEC; /* so's that */ -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/misc/prlong.c
r1 r102243 36 36 * ***** END LICENSE BLOCK ***** */ 37 37 38 #include " primpl.h"38 #include "nspr.h" 39 39 40 40 static PRInt64 ll_zero = LL_INIT( 0x00000000,0x00000000 ); -
trunk/src/libs/xpcom18a4/nsprpub/pr/src/pthreads/ptsynch.c
r102242 r102243 41 41 ** Exports: prlock.h, prcvar.h, prmon.h, prcmon.h 42 42 */ 43 44 #include "primpl.h" 43 #include "nspr.h" 45 44 46 45 #include <string.h> 47 46 #include <pthread.h> 48 47 #include <sys/time.h> 48 #include <errno.h> 49 49 50 50 #include <iprt/asm.h> … … 297 297 298 298 /* pthreads wants this in absolute time, off we go ... */ 299 (void) GETTIMEOFDAY(&now);299 (void)gettimeofday(&now, NULL); 300 300 /* that one's usecs, this one's nsecs - grrrr! */ 301 301 tmo.tv_sec += now.tv_sec;
Note:
See TracChangeset
for help on using the changeset viewer.