diff options
author | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-09-29 17:33:09 (GMT) |
---|---|---|
committer | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-09-29 17:33:09 (GMT) |
commit | 3d21af7eb88d188e9a271d408a8d1e0395472e4e (patch) | |
tree | 289e3a571b6f0b8c535c618cd02f97de56ecc7ce /test/h5test.h | |
parent | 55c4f63df714fc947ed5b4312d8491baacc7a9ef (diff) | |
download | hdf5-3d21af7eb88d188e9a271d408a8d1e0395472e4e.zip hdf5-3d21af7eb88d188e9a271d408a8d1e0395472e4e.tar.gz hdf5-3d21af7eb88d188e9a271d408a8d1e0395472e4e.tar.bz2 |
[svn-r11479] Purpose:
Maintenance on Windows
Description:
No Alarm function on Windows
Solution:
Platforms tested:
MSVS 6.0 on Windows XP
Misc. update:
Diffstat (limited to 'test/h5test.h')
-rw-r--r-- | test/h5test.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/test/h5test.h b/test/h5test.h index 235360a..d9800a0 100644 --- a/test/h5test.h +++ b/test/h5test.h @@ -111,13 +111,8 @@ extern MPI_Info h5_io_info_g; /* MPI INFO object for IO */ * Alarm definitions to wait up (terminate) a test that runs too long. */ #define alarm_seconds 1200 /* default is 20 minutes */ -#ifndef WIN32 #define ALARM_ON HDalarm(alarm_seconds) #define ALARM_OFF HDalarm(0) -#else -#define ALARM_ON -#define ALARM_OFF -#endif /* set alarms to N seconds if N > 0, else use default alarm_seconds. */ #define ALARM_SET(N) HDalarm((N)>0 ? N : alarm_seconds) |