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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
 
#include <setjmp.h>
#include <signal.h>
#include <stdlib.h>
#include "syscall.h"

_Noreturn void siglongjmp(sigjmp_buf buf, int ret)
{
	if (buf->__fl) __syscall(SYS_rt_sigprocmask, SIG_SETMASK,
		buf->__ss, 0, __SYSCALL_SSLEN);
	longjmp(buf->__jb, ret);
}
debug log:

solving d0e4f67 ...
found d0e4f67 in https://git.vuxu.org/mirror/musl/

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).