mailing list of musl libc
 help / color / mirror / code / Atom feed
e9a6131417de5624662c6d899f74d1d0de5c527b blob 246 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"

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