svn commit: r295628 - head/sys/arm/arm
Andrew Turner
andrew at FreeBSD.org
Mon Feb 15 16:55:45 UTC 2016
Author: andrew
Date: Mon Feb 15 16:55:44 2016
New Revision: 295628
URL: https://svnweb.freebsd.org/changeset/base/295628
Log:
Remove an unused static inline function.
Sponsored by: ABT Systems Ltd
Modified:
head/sys/arm/arm/syscall.c
Modified: head/sys/arm/arm/syscall.c
==============================================================================
--- head/sys/arm/arm/syscall.c Mon Feb 15 15:28:56 2016 (r295627)
+++ head/sys/arm/arm/syscall.c Mon Feb 15 16:55:44 2016 (r295628)
@@ -98,17 +98,6 @@ __FBSDID("$FreeBSD$");
void swi_handler(struct trapframe *);
-static __inline void
-call_trapsignal(struct thread *td, int sig, u_long code)
-{
- ksiginfo_t ksi;
-
- ksiginfo_init_trap(&ksi);
- ksi.ksi_signo = sig;
- ksi.ksi_code = (int)code;
- trapsignal(td, &ksi);
-}
-
int
cpu_fetch_syscall_args(struct thread *td, struct syscall_args *sa)
{
More information about the svn-src-all
mailing list