165b924408a295e02190929974e87edac275be7b
[platform/upstream/nspr.git] / nspr / config / now.c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5
6 #include <stdio.h>
7 #include <stdlib.h>
8
9 #if defined(XP_UNIX) || defined(XP_OS2) || defined(XP_BEOS)
10 #include <sys/time.h>
11 #elif defined(_WIN32)
12 #include <windows.h>
13 #else
14 #error "Architecture not supported"
15 #endif
16
17
18 int main(int argc, char **argv)
19 {
20 #if defined(OMIT_LIB_BUILD_TIME)
21     /*
22      * Some platforms don't have any 64-bit integer type
23      * such as 'long long'.  Because we can't use NSPR's
24      * PR_snprintf in this program, it is difficult to
25      * print a static initializer for PRInt64 (a struct).
26      * So we print nothing.  The makefiles that build the
27      * shared libraries will detect the empty output string
28      * of this program and omit the library build time
29      * in PRVersionDescription.
30      */
31 #elif defined(XP_UNIX) || defined(XP_OS2) || defined(XP_BEOS)
32     long long now;
33     struct timeval tv;
34 #ifdef HAVE_SVID_GETTOD
35     gettimeofday(&tv);
36 #else
37     gettimeofday(&tv, NULL);
38 #endif
39     now = ((1000000LL) * tv.tv_sec) + (long long)tv.tv_usec;
40 #if defined(OSF1)
41     fprintf(stdout, "%ld", now);
42 #elif defined(BEOS) && defined(__POWERPC__)
43     fprintf(stdout, "%Ld", now);  /* Metroworks on BeOS PPC */
44 #else
45     fprintf(stdout, "%lld", now);
46 #endif
47
48 #elif defined(_WIN32)
49     __int64 now;
50     FILETIME ft;
51     GetSystemTimeAsFileTime(&ft);
52     CopyMemory(&now, &ft, sizeof(now));
53     /*
54      * 116444736000000000 is the number of 100-nanosecond intervals
55      * between Jan. 1, 1601 and Jan. 1, 1970.
56      */
57 #ifdef __GNUC__
58     now = (now - 116444736000000000LL) / 10LL;
59     fprintf(stdout, "%lld", now);
60 #else
61     now = (now - 116444736000000000i64) / 10i64;
62     fprintf(stdout, "%I64d", now);
63 #endif
64
65 #else
66 #error "Architecture not supported"
67 #endif
68
69     return 0;
70 }  /* main */
71
72 /* now.c */