mailing list of musl libc
 help / color / mirror / code / Atom feed
208f16317b79aa6f2edaa5c888522ec5bff4804d blob 975 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
 
#include <sys/wait.h>
#include "syscall.h"
#include "wait4_waitid.h"

hidden pid_t __wait4_waitid(pid_t pid, int *status, int options, void *kru, int cp)
{
	idtype_t t;
	int r;
	siginfo_t info;

	info.si_pid = 0;
	if (pid < -1) {
		t = P_PGID;
		pid = -pid;
	} else if (pid == -1) {
		t = P_ALL;
	} else if (pid == 0) {
		t = P_PGID;
	} else {
		t = P_PID;
	}

	if (cp) r = __syscall_cp(SYS_waitid, t, pid, &info, options|WEXITED, kru);
	else r = __syscall(SYS_waitid, t, pid, &info, options|WEXITED, kru);

	if (r<0) return r;

	if (info.si_pid && status) {
		int sw=0;
		switch (info.si_code) {
		case CLD_CONTINUED:
			sw = 0xffff;
			break;
		case CLD_DUMPED:
			sw = info.si_status&0x7f | 0x80;
			break;
		case CLD_EXITED:
			sw = (info.si_status&0xff) << 8;
			break;
		case CLD_KILLED:
			sw = info.si_status&0x7f;
			break;
		case CLD_STOPPED:
		case CLD_TRAPPED:
			sw = ((info.si_status&0xff) << 8) + 0x7f;
			break;
		}
		*status = sw;
	}

	return info.si_pid;
}
debug log:

solving 208f1631 ...
found 208f1631 in https://inbox.vuxu.org/musl/20200903112309.102601-8-sorear@fastmail.com/

applying [1/1] https://inbox.vuxu.org/musl/20200903112309.102601-8-sorear@fastmail.com/
diff --git a/src/linux/__wait4_waitid.c b/src/linux/__wait4_waitid.c
new file mode 100644
index 00000000..208f1631

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

index at:
100644 208f16317b79aa6f2edaa5c888522ec5bff4804d	src/linux/__wait4_waitid.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).