From: Roland McGrath Date: Thu, 11 Aug 1994 00:26:03 +0000 (+0000) Subject: (struct sigcontext): Renamed member `sc_err' to `sc_error'. X-Git-Tag: glibc-2.16-ports-before-merge~4078 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a1ec466abbce0fdef4cce1a35464f67e4ff73dc;p=thirdparty%2Fglibc.git (struct sigcontext): Renamed member `sc_err' to `sc_error'. --- diff --git a/sysdeps/mach/hurd/mips/sigcontext.h b/sysdeps/mach/hurd/mips/sigcontext.h index edc807c1a21..b57d64878f6 100644 --- a/sysdeps/mach/hurd/mips/sigcontext.h +++ b/sysdeps/mach/hurd/mips/sigcontext.h @@ -34,7 +34,7 @@ struct sigcontext unsigned int sc_intr_port; /* Error code associated with this signal (interpreted as `error_t'). */ - int sc_err; + int sc_error; /* All following members are machine-dependent. The rest of this structure is written to be laid out identically to: @@ -45,7 +45,7 @@ struct sigcontext } trampoline.c knows this, so it must be changed if this changes. */ int sc_gpr[31]; /* "General" registers; [0] is r1. */ - int sc_mdlo, sc_mdhi; /* High and low multiplication results. */ + int sc_mdlo, sc_mdhi; /* Low and high multiplication results. */ int sc_pc; /* Instruction pointer. */ /* struct mips_exc_state */