summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1999-03-22 16:21:49 (GMT)
committerRobb Matzke <matzke@llnl.gov>1999-03-22 16:21:49 (GMT)
commit13c9a30beb9e177acffbb5cc5c1601a7d8b6199b (patch)
tree3af36050943d5814addaf71e16ddfff12a167d63 /src
parent8473025b4516fe4658271bb20f4b1a92de81c666 (diff)
downloadhdf5-13c9a30beb9e177acffbb5cc5c1601a7d8b6199b.zip
hdf5-13c9a30beb9e177acffbb5cc5c1601a7d8b6199b.tar.gz
hdf5-13c9a30beb9e177acffbb5cc5c1601a7d8b6199b.tar.bz2
[svn-r1154] Changes since 19990322
---------------------- ./configure.in ./configure [REGENERATED] ./config/commence.in A few tweaks to the makefile rules for rebuilding makefiles. ./src/H5detect.c Fixed a really stupid mistake: resetting the signal handler after a longjmp(). This should fix Bob's SIGBUS on Solaris.
Diffstat (limited to 'src')
-rw-r--r--src/H5detect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5detect.c b/src/H5detect.c
index 00f8ac4..84b5401 100644
--- a/src/H5detect.c
+++ b/src/H5detect.c
@@ -334,8 +334,8 @@ precision (detected_t *d)
static void
sigbus_handler(int __unused__ signo)
{
- longjmp(jbuf_g, 1);
signal(SIGBUS, sigbus_handler);
+ longjmp(jbuf_g, 1);
}