From: Jeff Dike <jdike@addtoit.com>
To: akpm@osdl.org
Cc: linux-kernel@vger.kernel.org,
user-mode-linux-devel@lists.sourceforge.net
Subject: [PATCH 10/11] UML - Use setjmp/longjmp instead of sigsetjmp/siglongjmp
Date: Sun, 15 Jan 2006 16:39:53 -0500 [thread overview]
Message-ID: <200601152139.k0FLdrwi027752@ccure.user-mode-linux.org> (raw)
Now that we are doing soft interrupts, there's no point in using
sigsetjmp and siglongjmp. Using setjmp and longjmp saves a
sigprocmask on every jump.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Index: linux-2.6.15-mm/arch/um/include/longjmp.h
===================================================================
--- linux-2.6.15-mm.orig/arch/um/include/longjmp.h 2006-01-09 11:44:53.000000000 -0500
+++ linux-2.6.15-mm/arch/um/include/longjmp.h 2006-01-09 11:48:47.000000000 -0500
@@ -5,13 +5,13 @@
#include "os.h"
#define UML_SIGLONGJMP(buf, val) do { \
- siglongjmp(*buf, val); \
+ longjmp(*buf, val); \
} while(0)
#define UML_SIGSETJMP(buf, enable) ({ \
int n; \
enable = get_signals(); \
- n = sigsetjmp(*buf, 1); \
+ n = setjmp(*buf); \
if(n != 0) \
set_signals(enable); \
n; })
reply other threads:[~2006-01-15 20:48 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200601152139.k0FLdrwi027752@ccure.user-mode-linux.org \
--to=jdike@addtoit.com \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=user-mode-linux-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome