summaryrefslogtreecommitdiff
path: root/include/asm-cris
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2002-05-28 05:51:30 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2002-05-28 05:51:30 -0700
commit849badb7cb50461d97936fb9fd23817d64e2ac4a (patch)
tree374fc96475921e82fc796e26ad28ea1144b5a975 /include/asm-cris
parent052508d3acd8004cf62a4e3b83ee268475feabd9 (diff)
[PATCH] consolidate arch specific copy_siginfo_to_user
This patch moves a version of copy_siginfo_to_user that is common to ten of our architectures into the gerneic code and allows the other architectures to override it. I suspect more of the remaining architectures will be able to use it as well once it is fixed (patch to follow).
Diffstat (limited to 'include/asm-cris')
-rw-r--r--include/asm-cris/siginfo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-cris/siginfo.h b/include/asm-cris/siginfo.h
index d843ace9c962..6938a2b738c8 100644
--- a/include/asm-cris/siginfo.h
+++ b/include/asm-cris/siginfo.h
@@ -226,6 +226,7 @@ extern inline void copy_siginfo(siginfo_t *to, siginfo_t *from)
memcpy(to, from, 3*sizeof(int) + sizeof(from->_sifields._sigchld));
}
+#define HAVE_ARCH_COPY_SIGINFO_TO_USER
extern int copy_siginfo_to_user(siginfo_t *to, siginfo_t *from);
#endif /* __KERNEL__ */