Initial revision
[linux-2.6.git] / arch / um / sys-i386 / time.c
1 /*
2  * sys-i386/time.c 
3  * Created              25.9.2002       Sapan Bhatia
4  *
5  */
6
7 unsigned long long time_stamp(void)
8 {
9         unsigned long low, high;
10
11         asm("rdtsc" : "=a" (low), "=d" (high));
12         return((((unsigned long long) high) << 32) + low);
13 }
14
15 /*
16  * Overrides for Emacs so that we follow Linus's tabbing style.
17  * Emacs will notice this stuff at the end of the file and automatically
18  * adjust the settings for this buffer only.  This must remain at the end
19  * of the file.
20  * ---------------------------------------------------------------------------
21  * Local variables:
22  * c-file-style: "linux"
23  * End:
24  */