Gedichte
Musik
Bilder
Quellcodebibliothek
Diashow
Normaldarstellung
products
/
Sources
/
formale Sprachen
/
C
/
LibreOffice
/
icon-themes
/
sifr_svg
/
cmd
/
32
/ (
Office von Apache
Version 25.8.3.2
©
) Datei vom 5.10.2025 mit Größe 543 B
Bilddatei
ptrace_user.c
products/Sources/formale Sprachen/C/Linux/arch/x86/um/ptrace_user.c
/* * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) * Licensed under the GPL */ #include
#include
int ptrace_getregs(long pid, unsigned long *regs_out) { if (ptrace(PTRACE_GETREGS, pid, 0, regs_out) < 0) return -errno; return 0; } int ptrace_setregs(long pid, unsigned long *regs) { if (ptrace(PTRACE_SETREGS, pid, 0, regs) < 0) return -errno; return 0; }
2026-05-28