diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-03-18 21:37:05 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-03-18 21:37:05 -0400 |
commit | d444064d5a1fad60033378a3dd58b3371981e5c5 (patch) | |
tree | 6f4eb39e0e5a42b5431dfc83929c4d773a87b038 | |
parent | 5f95f965e933c5b155db75520ac27c92ddbcf400 (diff) | |
download | musl-d444064d5a1fad60033378a3dd58b3371981e5c5.tar.gz musl-d444064d5a1fad60033378a3dd58b3371981e5c5.tar.xz musl-d444064d5a1fad60033378a3dd58b3371981e5c5.zip |
remove useless and incorrect uc_regspace member from mips ucontext_t
this seems to have been copied erroneously from the arm version of the file. it's fairly harmless but it's a mistake and better to fix now than later.
-rw-r--r-- | arch/mips/bits/signal.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/mips/bits/signal.h b/arch/mips/bits/signal.h index 56ccdb73..f26c37da 100644 --- a/arch/mips/bits/signal.h +++ b/arch/mips/bits/signal.h @@ -44,7 +44,6 @@ typedef struct __ucontext { stack_t uc_stack; mcontext_t uc_mcontext; sigset_t uc_sigmask; - unsigned long uc_regspace[128]; } ucontext_t; #define SA_NOCLDSTOP 1 |