From dbf9815c14749eed31e16262a7b16700750a6615 Mon Sep 17 00:00:00 2001 From: hunt Date: Thu, 13 Sep 2007 14:20:03 +0000 Subject: 2007-09-13 Martin Hunt * aux_syscalls.stp: Replace get_user calls with __stp_get_user. --- tapset/ChangeLog | 4 ++++ tapset/aux_syscalls.stp | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/tapset/ChangeLog b/tapset/ChangeLog index d1ce0270..c87c89f0 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,7 @@ +2007-09-13 Martin Hunt + + * aux_syscalls.stp: Replace get_user calls with __stp_get_user. + 2007-09-06 Zhaolei * aux_syscalls.stp (_stp_sockaddr_str): Fix memory access error diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp index b037d67c..ccbea9a3 100644 --- a/tapset/aux_syscalls.stp +++ b/tapset/aux_syscalls.stp @@ -628,7 +628,7 @@ function __get_argv:string(a:long, first:long) argv++; while (argv != NULL) { - if (get_user (vstr, argv)) + if (__stp_get_user (vstr, argv)) break; if (vstr == NULL) @@ -686,7 +686,7 @@ function __get_compat_argv:string(a:long, first:long) argv++; while (argv != NULL) { - if (get_user (vstr, argv)) + if (__stp_get_user (vstr, argv)) break; if (vstr == NULL) -- cgit