@@ -3,10 +3,13 @@
# Licensed under the GPL
#
-obj-y = registers.o mcontext.o
+obj-y = mcontext.o
obj-$(CONFIG_X86_32) += tls.o
USER_OBJS := $(obj-y)
+obj-y += registers.o
+NOLIBC_OBJS := registers.o
+
include $(srctree)/arch/um/scripts/Makefile.rules
@@ -7,9 +7,6 @@
#include <errno.h>
#include <stdlib.h>
#include <sys/ptrace.h>
-#ifdef __i386__
-#include <sys/user.h>
-#endif
#include <longjmp.h>
#include <sysdep/ptrace_user.h>
#include <sys/uio.h>
@@ -28,9 +25,7 @@ int get_fp_registers(int pid, unsigned long *regs)
.iov_len = host_fp_size,
};
- if (ptrace(PTRACE_GETREGSET, pid, ptrace_regset, &iov) < 0)
- return -errno;
- return 0;
+ return sys_ptrace(PTRACE_GETREGSET, pid, (void *)ptrace_regset, &iov);
}
int put_fp_registers(int pid, unsigned long *regs)
@@ -40,9 +35,7 @@ int put_fp_registers(int pid, unsigned long *regs)
.iov_len = host_fp_size,
};
- if (ptrace(PTRACE_SETREGSET, pid, ptrace_regset, &iov) < 0)
- return -errno;
- return 0;
+ return sys_ptrace(PTRACE_SETREGSET, pid, (void *)ptrace_regset, &iov);
}
int arch_init_registers(int pid)
@@ -60,9 +53,7 @@ int arch_init_registers(int pid)
/* GDB has x86_xsave_length, which uses x86_cpuid_count */
ptrace_regset = NT_X86_XSTATE;
- ret = ptrace(PTRACE_GETREGSET, pid, ptrace_regset, &iov);
- if (ret)
- ret = -errno;
+ ret = sys_ptrace(PTRACE_GETREGSET, pid, (void *)ptrace_regset, &iov);
if (ret == -ENODEV) {
#ifdef CONFIG_X86_32
@@ -71,9 +62,8 @@ int arch_init_registers(int pid)
ptrace_regset = NT_PRFPREG;
#endif
iov.iov_len = 2 * 1024 * 1024;
- ret = ptrace(PTRACE_GETREGSET, pid, ptrace_regset, &iov);
- if (ret)
- ret = -errno;
+ ret = sys_ptrace(PTRACE_GETREGSET, pid,
+ (void *)ptrace_regset, &iov);
}
munmap(iov.iov_base, 2 * 1024 * 1024);