mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r11480] Purpose:
Maintenance on Windows Description: No alarm function on Windows, opt out Solution: Platforms tested: MSVS 6.0 on Windows XP Misc. update:
This commit is contained in:
parent
3d21af7eb8
commit
25b5aa05f3
12
src/H5.c
12
src/H5.c
@ -830,6 +830,18 @@ HDvsnprintf(char *buf, size_t UNUSED size, const char *fmt, va_list ap)
|
||||
#endif /* H5_HAVE_VSNPRINTF */
|
||||
#endif /* __PUMAGON__ */
|
||||
|
||||
#ifndef H5_HAVE_ALARM
|
||||
#ifdef WIN32
|
||||
unsigned int HDalarm(N) {
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
#else
|
||||
unsigned int HDalarm(unsigned int N) {
|
||||
return alarm(N);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: HDfprintf
|
||||
|
@ -545,7 +545,6 @@ H5_DLL void H5_bandwidth(char *buf/*out*/, double nbytes, double nseconds);
|
||||
#define HDabs(X) abs(X)
|
||||
#define HDaccess(F,M) access(F, M)
|
||||
#define HDacos(X) acos(X)
|
||||
#define HDalarm(N) alarm(N)
|
||||
#define HDasctime(T) asctime(T)
|
||||
#define HDasin(X) asin(X)
|
||||
#define HDassert(X) assert(X)
|
||||
@ -1394,6 +1393,7 @@ H5_DLL int H5S_term_interface(void);
|
||||
H5_DLL int H5T_term_interface(void);
|
||||
H5_DLL int H5Z_term_interface(void);
|
||||
|
||||
|
||||
/* Define alarm function since windows doesn't support alarm function*/
|
||||
H5_DLL unsigned int HDalarm(unsigned int N);
|
||||
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user