home *** CD-ROM | disk | FTP | other *** search
- /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
- /*
- * The contents of this file are subject to the Netscape Public License
- * Version 1.0 (the "NPL"); you may not use this file except in
- * compliance with the NPL. You may obtain a copy of the NPL at
- * http://www.mozilla.org/NPL/
- *
- * Software distributed under the NPL is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
- * for the specific language governing rights and limitations under the
- * NPL.
- *
- * The Initial Developer of this code under the NPL is Netscape
- * Communications Corporation. Portions created by Netscape are
- * Copyright (C) 1998 Netscape Communications Corporation. All Rights
- * Reserved.
- */
-
- #include "primpl.h"
- #include <sys/timeb.h>
-
-
- struct _MDLock _pr_ioq_lock;
- HINSTANCE _pr_hInstance = NULL;
- char * _pr_top_of_task_stack;
- _PRInterruptTable _pr_interruptTable[] = { { 0 } };
-
- /*
- *-----------------------------------------------------------------------
- *
- * PR_Now --
- *
- * Returns the current time in microseconds since the epoch.
- * The epoch is midnight January 1, 1970 GMT.
- * The implementation is machine dependent. This is the
- * implementation for Windows.
- * Cf. time_t time(time_t *tp)
- *
- *-----------------------------------------------------------------------
- */
-
- #if defined(HAVE_WATCOM_BUG_2)
- PRTime __pascal __export __loadds
- #else
- PRTime
- #endif
- PR_Now(void)
- {
- PRInt64 s, ms, ms2us, s2us;
- struct timeb b;
-
- ftime(&b);
- LL_I2L(ms2us, PR_USEC_PER_MSEC);
- LL_I2L(s2us, PR_USEC_PER_SEC);
- LL_I2L(s, b.time);
- LL_I2L(ms, (PRInt32)b.millitm);
- LL_MUL(ms, ms, ms2us);
- LL_MUL(s, s, s2us);
- LL_ADD(s, s, ms);
- return s;
- }
-
-
-
- char *_PR_MD_GET_ENV(const char *name)
- {
- return NULL;
- }
-
- PRIntn
- _PR_MD_PUT_ENV(const char *name)
- {
- return NULL;
- }
-
- int CALLBACK LibMain( HINSTANCE hInst, WORD wDataSeg,
- WORD cbHeapSize, LPSTR lpszCmdLine )
- {
- _pr_hInstance = hInst;
- return TRUE;
- }
-
-
-
- void
- _PR_MD_EARLY_INIT()
- {
- _tzset();
- return;
- }
-
- void
- _PR_MD_WAKEUP_CPUS( void )
- {
- return;
- }
-
-