diff options
author | Steve Price <steve@FreeBSD.org> | 1999-11-14 03:18:49 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-11-14 03:18:49 +0000 |
commit | b7e4c10bea22f66020f5a49668661a3a6c0c056d (patch) | |
tree | b4d8a8698741822aa5bdeb6679369cbc0bbc2c81 /benchmarks | |
parent | cdf2f309c442ca168d1987310e4db32e0db3099d (diff) | |
download | ports-b7e4c10bea22f66020f5a49668661a3a6c0c056d.tar.gz ports-b7e4c10bea22f66020f5a49668661a3a6c0c056d.zip |
Notes
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/rawio/files/patch-aa | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/benchmarks/rawio/files/patch-aa b/benchmarks/rawio/files/patch-aa new file mode 100644 index 000000000000..e5af0bb39de7 --- /dev/null +++ b/benchmarks/rawio/files/patch-aa @@ -0,0 +1,18 @@ +--- rawio.c.orig Sat Jul 24 19:45:14 1999 ++++ rawio.c Sat Nov 13 10:47:50 1999 +@@ -493,10 +493,14 @@ + void dochild (int test, int proc) + { + sigset_t allsigs; +- struct sigaction ignore = {sigcatch, allsigs, 0}; ++ struct sigaction ignore; + int mycount; + int i; + int maxrecs; ++ ++ ignore.sa_handler = sigcatch; ++ ignore.sa_flags = 0; ++ ignore.sa_mask = allsigs; + + /* first, calculate the number of records to transfer. + * If we're one of the first <remainder> processes, |