diff options
author | Mark Wielaard <mjw@redhat.com> | 2009-04-02 23:19:27 +0200 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2009-04-02 23:19:27 +0200 |
commit | 49be62cc7130e60947bbae90b6bf177e173c8b29 (patch) | |
tree | 8be7b6c6523aa87b967e22252615114f38603dd4 | |
parent | b51455af34a99768cc3a6ce50b251132f5fe752e (diff) | |
download | systemtap-steved-49be62cc7130e60947bbae90b6bf177e173c8b29.tar.gz systemtap-steved-49be62cc7130e60947bbae90b6bf177e173c8b29.tar.xz systemtap-steved-49be62cc7130e60947bbae90b6bf177e173c8b29.zip |
runtime/syscall.h: Forward declare __ia64_fetch_register.
-rw-r--r-- | runtime/syscall.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/syscall.h b/runtime/syscall.h index ae451070..bd480a0c 100644 --- a/runtime/syscall.h +++ b/runtime/syscall.h @@ -261,6 +261,9 @@ __stp_user_syscall_arg(struct task_struct *task, struct pt_regs *regs, #endif #if defined(__ia64__) +/* Defined in regs-ia64.c. Forward declaration for ____stp_user_syscall_arg. */ +static long * __ia64_fetch_register(int, struct pt_regs *, unsigned long **); + #define __stp_user_syscall_arg(task, regs, n) \ ____stp_user_syscall_arg(task, regs, n, &c->unwaddr) |