mailing list of musl libc
 help / color / mirror / code / Atom feed
b0d799d2d988ad7df873d3ef212894fba55a1872 blob 736 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
 
#include <signal.h>
#include <errno.h>
#include "syscall.h"

int sigaltstack(const stack_t *restrict ss, stack_t *restrict old)
{
	// We must check requirements which Linux fails to verify in the syscall
	// itself.
	if (ss) {
		// The syscall does already check against MINSIGSTKSZ, however,
		// the kernel's value is smaller than musl's value on some
		// architectures. Thus, although this check may appear
		// redundant, it is not.
		if (!(ss->ss_flags & SS_DISABLE) && ss->ss_size < MINSIGSTKSZ) {
			errno = ENOMEM;
			return -1;
		}
		// Linux ignores SS_ONSTACK on input, but POSIX requires an
		// error.
		if (ss->ss_flags & SS_ONSTACK) {
			errno = EINVAL;
			return -1;
		}
	}
	return syscall(SYS_sigaltstack, ss, old);
}
debug log:

solving b0d799d2 ...
found b0d799d2 in https://inbox.vuxu.org/musl/CAA2zVHrijyMnrUef5XUqRKX+H0QOwugRmk+gJOgPLvbxJ78=9g@mail.gmail.com/
found cfa3f5c1 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 cfa3f5c19d0de03384ff3f1a3b884149626db07b	src/signal/sigaltstack.c

applying [1/1] https://inbox.vuxu.org/musl/CAA2zVHrijyMnrUef5XUqRKX+H0QOwugRmk+gJOgPLvbxJ78=9g@mail.gmail.com/
diff --git a/src/signal/sigaltstack.c b/src/signal/sigaltstack.c
index cfa3f5c1..b0d799d2 100644

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

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