|
4 | 4 | * A simple benchmark program for PostgreSQL
|
5 | 5 | * Originally written by Tatsuo Ishii and enhanced by many contributors.
|
6 | 6 | *
|
7 |
| - * $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.95 2010/01/06 01:12:14 itagaki Exp $ |
| 7 | + * $PostgreSQL: pgsql/contrib/pgbench/pgbench.c,v 1.96 2010/01/06 01:30:03 itagaki Exp $ |
8 | 8 | * Copyright (c) 2000-2010, PostgreSQL Global Development Group
|
9 | 9 | * ALL RIGHTS RESERVED;
|
10 | 10 | *
|
|
34 | 34 | #include"postgres_fe.h"
|
35 | 35 |
|
36 | 36 | #include"libpq-fe.h"
|
37 |
| -#include"pqsignal.h" |
| 37 | +#include"libpq/pqsignal.h" |
38 | 38 | #include"portability/instr_time.h"
|
39 | 39 |
|
40 | 40 | #include<ctype.h>
|
41 | 41 |
|
42 |
| -#ifdefWIN32 |
43 |
| -#include<win32.h> |
44 |
| -#else |
45 |
| -#include<signal.h> |
| 42 | +#ifndefWIN32 |
46 | 43 | #include<sys/time.h>
|
47 | 44 | #include<unistd.h>
|
48 | 45 | #endif/* ! WIN32 */
|
|