mailing list of musl libc
 help / color / mirror / code / Atom feed
ff7ac81e5ba51d704e9b96e1a1a2e198ee0a1812 blob 1126 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
 
#include <stdlib.h>
#include <signal.h>
#include <errno.h>
#include <string.h>
#include "syscall.h"
#include "pthread_impl.h"
#include "libc.h"
#include "ksigaction.h"

void __restore(), __restore_rt();

_Weak
pthread_t __pthread_self_def(void) { return 0; }

int __libc_sigaction(int sig, const struct sigaction *restrict sa, struct sigaction *restrict old)
{
	struct k_sigaction ksa;
	if (sa) {
		if ((uintptr_t)sa->sa_handler > 1UL)
			__pthread_self_def();
		ksa.handler = sa->sa_handler;
		ksa.flags = sa->sa_flags | SA_RESTORER;
		ksa.restorer = (sa->sa_flags & SA_SIGINFO) ? __restore_rt : __restore;
		memcpy(&ksa.mask, &sa->sa_mask, sizeof ksa.mask);
	}
	if (syscall(SYS_rt_sigaction, sig, sa?&ksa:0, old?&ksa:0, sizeof ksa.mask))
		return -1;
	if (old) {
		old->sa_handler = ksa.handler;
		old->sa_flags = ksa.flags;
		memcpy(&old->sa_mask, &ksa.mask, sizeof ksa.mask);
	}
	return 0;
}

int __sigaction(int sig, const struct sigaction *restrict sa, struct sigaction *restrict old)
{
	if (sig-32U < 3) {
		errno = EINVAL;
		return -1;
	}
	return __libc_sigaction(sig, sa, old);
}

weak_alias(__sigaction, sigaction);
debug log:

solving ff7ac81 ...
found ff7ac81 in https://inbox.vuxu.org/musl/50a7dfa0d4087c301278e0626cb0780338342dbb.1360968989.git.Jens.Gustedt@inria.fr/
found 7a72a44 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 7a72a44b13fec0ca83eae4f4241258e2da8c3876	src/signal/sigaction.c

applying [1/1] https://inbox.vuxu.org/musl/50a7dfa0d4087c301278e0626cb0780338342dbb.1360968989.git.Jens.Gustedt@inria.fr/
diff --git a/src/signal/sigaction.c b/src/signal/sigaction.c
index 7a72a44..ff7ac81 100644

Checking patch src/signal/sigaction.c...
Applied patch src/signal/sigaction.c cleanly.

index at:
100644 ff7ac81e5ba51d704e9b96e1a1a2e198ee0a1812	src/signal/sigaction.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).