VirtualBox

Changeset 102243 in vbox


Ignore:
Timestamp:
Nov 22, 2023 10:39:39 AM (12 months ago)
Author:
vboxsync
Message:

libs/xpcom: Get rid of prosdep.h and primpl.h as they don't contain anything useful anymore, bugref:10545

Location:
trunk/src/libs/xpcom18a4
Files:
1 deleted
5 edited

Legend:

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

    r102241 r102243  
    6161INSTALLS += \
    6262        NSPRPUB-HEADERS \
    63         NSPRPUB-MD-HEADERS \
    6463        STRING-HEADERS \
    6564        XPCOM-HEADERS \
     
    175174        nsprpub/pr/include/prtypes.h \
    176175        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 644
    179 NSPRPUB-MD-HEADERS_SOURCES = \
    180         nsprpub/pr/include/md/prosdep.h
    181176
    182177STRING-HEADERS_INST = $(INST_SDK)bindings/xpcom/include/string/
  • trunk/src/libs/xpcom18a4/nsprpub/pr/src/io/prprf.c

    r102223 r102243  
    4545#include <stdio.h>
    4646#include <string.h>
    47 #include "primpl.h"
    4847#include "prprf.h"
    4948#include "prlong.h"
  • trunk/src/libs/xpcom18a4/nsprpub/pr/src/misc/prinrval.c

    r102234 r102243  
    4040 * description:         implementation for the kernel interval timing functions
    4141 */
    42 
    43 #include "primpl.h"
     42#include "nspr.h"
    4443
    4544#include <signal.h>
     
    7978    PRIntervalTime ticks;
    8079
    81     (void)GETTIMEOFDAY(&time);  /* fallicy of course */
     80    (void)gettimeofday(&time,NULL);  /* fallicy of course */
    8281    ticks = (PRUint32)time.tv_sec * PR_MSEC_PER_SEC;  /* that's in milliseconds */
    8382    ticks += (PRUint32)time.tv_usec / PR_USEC_PER_MSEC;  /* so's that */
  • trunk/src/libs/xpcom18a4/nsprpub/pr/src/misc/prlong.c

    r1 r102243  
    3636 * ***** END LICENSE BLOCK ***** */
    3737
    38 #include "primpl.h"
     38#include "nspr.h"
    3939
    4040static PRInt64 ll_zero = LL_INIT( 0x00000000,0x00000000 );
  • trunk/src/libs/xpcom18a4/nsprpub/pr/src/pthreads/ptsynch.c

    r102242 r102243  
    4141** Exports:            prlock.h, prcvar.h, prmon.h, prcmon.h
    4242*/
    43 
    44 #include "primpl.h"
     43#include "nspr.h"
    4544
    4645#include <string.h>
    4746#include <pthread.h>
    4847#include <sys/time.h>
     48#include <errno.h>
    4949
    5050#include <iprt/asm.h>
     
    297297
    298298    /* pthreads wants this in absolute time, off we go ... */
    299     (void)GETTIMEOFDAY(&now);
     299    (void)gettimeofday(&now, NULL);
    300300    /* that one's usecs, this one's nsecs - grrrr! */
    301301    tmo.tv_sec += now.tv_sec;
Note: See TracChangeset for help on using the changeset viewer.

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