|
2 | 2 | * gettimeofday.c
|
3 | 3 | * Win32 gettimeofday() replacement
|
4 | 4 | *
|
5 |
| - * $PostgreSQL: pgsql/src/port/gettimeofday.c,v 1.6 2005/05/1605:52:13 neilc Exp $ |
| 5 | + * $PostgreSQL: pgsql/src/port/gettimeofday.c,v 1.7 2005/12/1621:55:27 alvherre Exp $ |
6 | 6 | *
|
7 | 7 | * Copyright (c) 2003 SRA, Inc.
|
8 | 8 | * Copyright (c) 2003 SKC, Inc.
|
@@ -36,6 +36,9 @@ static const unsigned __int64 epoch = 116444736000000000L;
|
36 | 36 |
|
37 | 37 | /*
|
38 | 38 | * timezone information is stored outside the kernel so tzp isn't used anymore.
|
| 39 | + * |
| 40 | + * Note: this function is not for Win32 high precision timing purpose. See |
| 41 | + * elapsed_time(). |
39 | 42 | */
|
40 | 43 | int
|
41 | 44 | gettimeofday(structtimeval*tp,structtimezone*tzp)
|
|