summaryrefslogblamecommitdiff
path: root/src/signal/siglongjmp.c
blob: a7bcca2439e67575c1317bb76e4862d183b58db8 (plain) (tree)
1
2
3
4
5
6
7
8
9


                   
                    
                         
 
                                                  
 
                                                 
                                
 
#include <setjmp.h>
#include <signal.h>
#include <stdlib.h>
#include "syscall.h"
#include "pthread_impl.h"

_Noreturn void siglongjmp(sigjmp_buf buf, int ret)
{
	if (buf->__fl) __restore_sigs(buf->__ss);
	longjmp(buf->__jb, ret);
}