~ubuntu-branches/ubuntu/quantal/nspr/quantal-security

« back to all changes in this revision

Viewing changes to mozilla/nsprpub/pr/src/md/windows/w16null.c

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-10 11:34:26 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090810113426-3uv4diflrkcbdimm
Tags: 4.8-0ubuntu1
* New upstream release: 4.8 (LP: #387812)
* adjust patches to changed upstreanm codebase
  - update debian/patches/99_configure.patch
* update shlibs symbols to include new API elements
  - update debian/libnspr4-0d.symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2
 
/* ***** BEGIN LICENSE BLOCK *****
3
 
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
4
 
 *
5
 
 * The contents of this file are subject to the Mozilla Public License Version
6
 
 * 1.1 (the "License"); you may not use this file except in compliance with
7
 
 * the License. You may obtain a copy of the License at
8
 
 * http://www.mozilla.org/MPL/
9
 
 *
10
 
 * Software distributed under the License is distributed on an "AS IS" basis,
11
 
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12
 
 * for the specific language governing rights and limitations under the
13
 
 * License.
14
 
 *
15
 
 * The Original Code is the Netscape Portable Runtime (NSPR).
16
 
 *
17
 
 * The Initial Developer of the Original Code is
18
 
 * Netscape Communications Corporation.
19
 
 * Portions created by the Initial Developer are Copyright (C) 1998-2000
20
 
 * the Initial Developer. All Rights Reserved.
21
 
 *
22
 
 * Contributor(s):
23
 
 *
24
 
 * Alternatively, the contents of this file may be used under the terms of
25
 
 * either the GNU General Public License Version 2 or later (the "GPL"), or
26
 
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27
 
 * in which case the provisions of the GPL or the LGPL are applicable instead
28
 
 * of those above. If you wish to allow use of your version of this file only
29
 
 * under the terms of either the GPL or the LGPL, and not to allow others to
30
 
 * use your version of this file under the terms of the MPL, indicate your
31
 
 * decision by deleting the provisions above and replace them with the notice
32
 
 * and other provisions required by the GPL or the LGPL. If you do not delete
33
 
 * the provisions above, a recipient may use your version of this file under
34
 
 * the terms of any one of the MPL, the GPL or the LGPL.
35
 
 *
36
 
 * ***** END LICENSE BLOCK ***** */
37
 
 
38
 
#include "primpl.h"
39
 
#include <sys/timeb.h>
40
 
 
41
 
 
42
 
struct _MDLock          _pr_ioq_lock;
43
 
HINSTANCE               _pr_hInstance = NULL;
44
 
char *                  _pr_top_of_task_stack;
45
 
_PRInterruptTable       _pr_interruptTable[] = { { 0 } };
46
 
 
47
 
/*
48
 
 *-----------------------------------------------------------------------
49
 
 *
50
 
 * PR_Now --
51
 
 *
52
 
 *     Returns the current time in microseconds since the epoch.
53
 
 *     The epoch is midnight January 1, 1970 GMT.
54
 
 *     The implementation is machine dependent.  This is the
55
 
 *     implementation for Windows.
56
 
 *     Cf. time_t time(time_t *tp)
57
 
 *
58
 
 *-----------------------------------------------------------------------
59
 
 */
60
 
 
61
 
#if defined(HAVE_WATCOM_BUG_2)
62
 
PRTime __pascal __export __loadds
63
 
#else
64
 
PR_IMPLEMENT(PRTime)
65
 
#endif
66
 
PR_Now(void)
67
 
{
68
 
    PRInt64 s, ms, ms2us, s2us;
69
 
    struct timeb b;
70
 
 
71
 
    ftime(&b);
72
 
    LL_I2L(ms2us, PR_USEC_PER_MSEC);
73
 
    LL_I2L(s2us, PR_USEC_PER_SEC);
74
 
    LL_I2L(s, b.time);
75
 
    LL_I2L(ms, (PRInt32)b.millitm);
76
 
    LL_MUL(ms, ms, ms2us);
77
 
    LL_MUL(s, s, s2us);
78
 
    LL_ADD(s, s, ms);
79
 
    return s;       
80
 
}
81
 
 
82
 
 
83
 
 
84
 
char *_PR_MD_GET_ENV(const char *name)
85
 
{
86
 
    return NULL;
87
 
}
88
 
 
89
 
PRIntn
90
 
_PR_MD_PUT_ENV(const char *name)
91
 
{
92
 
    return NULL;
93
 
}
94
 
 
95
 
int CALLBACK LibMain( HINSTANCE hInst, WORD wDataSeg, 
96
 
                      WORD cbHeapSize, LPSTR lpszCmdLine )
97
 
{
98
 
    _pr_hInstance = hInst;
99
 
    return TRUE;
100
 
}
101
 
 
102
 
 
103
 
 
104
 
void
105
 
_PR_MD_EARLY_INIT()
106
 
{
107
 
    _tzset();
108
 
    return;
109
 
}
110
 
 
111
 
void
112
 
_PR_MD_WAKEUP_CPUS( void )
113
 
{
114
 
    return;
115
 
}    
116