This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / include / linux / vs_time.h
1 #ifndef _VS_TIME_H
2 #define _VS_TIME_H
3
4
5 /* time faking stuff */
6
7 #ifdef CONFIG_VSERVER_VTIME
8
9 extern void vx_gettimeofday(struct timeval *tv);
10 extern int vx_settimeofday(struct timespec *ts);
11
12 #else
13 #define vx_gettimeofday(t)      do_gettimeofday(t)
14 #define vx_settimeofday(t)      do_settimeofday(t)
15 #endif
16
17 #else
18 #warning duplicate inclusion
19 #endif