You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
0 B
18 lines
0 B
19 years ago
|
/*
|
||
|
* Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
|
||
|
* Licensed under the GPL
|
||
|
*/
|
||
|
|
||
|
#include <setjmp.h>
|
||
|
#include <signal.h>
|
||
|
#include "kern_util.h"
|
||
|
#include "user_util.h"
|
||
|
#include "os.h"
|
||
|
|
||
|
void do_longjmp(void *b, int val)
|
||
|
{
|
||
|
sigjmp_buf *buf = b;
|
||
|
|
||
|
siglongjmp(*buf, val);
|
||
|
}
|