From fe772b4ab2c86bbd3219073d971edb6e38b1b6ec Mon Sep 17 00:00:00 2001 From: steve Date: Sun, 14 Nov 1999 03:18:49 +0000 Subject: Make this compile again in light of the recent signal changes. This is no fault of Marcel's changes but rather poor style. Bruce gives a much longer version but I won't repeat that here. :) --- benchmarks/rawio/files/patch-aa | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 benchmarks/rawio/files/patch-aa (limited to 'benchmarks') diff --git a/benchmarks/rawio/files/patch-aa b/benchmarks/rawio/files/patch-aa new file mode 100644 index 0000000..e5af0bb --- /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 processes, -- cgit v1.1