VirtualBox

Ignore:
Timestamp:
Nov 22, 2023 10:39:39 AM (18 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
160368
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/nsprpub/pr
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • 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.

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