mailing list of musl libc
 help / color / mirror / code / Atom feed
ab7fcda32ff400d650f1cb60924c8f9aedbaf2d3 blob 577 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 
#include <sys/ptrace.h>
#include <stdarg.h>
#include <unistd.h>
#include "syscall.h"

long ptrace(int req, ...)
{
	va_list ap;
	pid_t pid;
	void *addr, *data, *addr2 = 0;
	long ret, result;

	va_start(ap, req);
	pid = va_arg(ap, pid_t);
	addr = va_arg(ap, void *);
	data = va_arg(ap, void *);
	/* PTRACE_{READ,WRITE}{DATA,TEXT} are specific to SPARC. */
#ifdef PTRACE_READTEXT
	addr2 = va_arg(ap, void *);
#endif
	va_end(ap);

	if (req-1U < 3) data = &result;
	ret = syscall(SYS_ptrace, req, pid, addr, data, addr2);

	if (ret < 0 || req-1U >= 3) return ret;
	return result;
}
debug log:

solving ab7fcda3 ...
found ab7fcda3 in https://inbox.vuxu.org/musl/20170628132513.15483-1-amonakov@ispras.ru/
found 83b8022b in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 83b8022beefa8afc9abeb19dfc7e9bac35d605e8	src/linux/ptrace.c

applying [1/1] https://inbox.vuxu.org/musl/20170628132513.15483-1-amonakov@ispras.ru/
diff --git a/src/linux/ptrace.c b/src/linux/ptrace.c
index 83b8022b..ab7fcda3 100644

Checking patch src/linux/ptrace.c...
Applied patch src/linux/ptrace.c cleanly.

index at:
100644 ab7fcda32ff400d650f1cb60924c8f9aedbaf2d3	src/linux/ptrace.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).