From: Daniel Jacobowitz <drow@mvista.com>
To: Andreas Schwab <schwab@suse.de>
Cc: gdb-patches@sources.redhat.com
Subject: Re: PATCH: Fix SIGRTMIN problems with glibc 2.3 [1/2]
Date: Wed, 26 Mar 2003 17:21:00 -0000 [thread overview]
Message-ID: <20030326172056.GA1766@nevyn.them.org> (raw)
In-Reply-To: <jeadfirqs3.fsf@sykes.suse.de>
On Wed, Mar 26, 2003 at 06:17:32PM +0100, Andreas Schwab wrote:
> Daniel Jacobowitz <drow@mvista.com> writes:
>
> |> Index: signals.c
> |> ===================================================================
> |> RCS file: /cvs/src/src/gdb/signals/signals.c,v
> |> retrieving revision 1.5
> |> diff -u -p -r1.5 signals.c
> |> --- signals.c 27 Aug 2002 22:37:14 -0000 1.5
> |> +++ signals.c 26 Mar 2003 16:25:51 -0000
> |> @@ -30,6 +30,20 @@
> |>
> |> #include <signal.h>
> |>
> |> +/* Always use __SIGRTMIN if it's available. SIGRTMIN is the lowest
> |> + _available_ realtime signal, not the lowest supported; glibc takes
> |> + several for its own use. */
> |> +
> |> +#ifndef REALTIME_LO
> |> +# if defined(__SIGRTMIN)
> |> +# define REALTIME_LO __SIGRTMIN
> |> +# define REALTIME_HI __SIGRTMAX
> |> +# elif defined(SIGRTMIN)
> |> +# define REALTIME_LO __SIGRTMIN
> |> +# define REALTIME_HI __SIGRTMAX
> ^^
> Typo?
Er, yes rather. Thanks for catching that!
--
Daniel Jacobowitz
MontaVista Software Debian GNU/Linux Developer
2003-03-26 Daniel Jacobowitz <drow@mvista.com>
* signals/signals.c: Fix typos in last change.
Index: signals/signals.c
===================================================================
RCS file: /cvs/src/src/gdb/signals/signals.c,v
retrieving revision 1.6
diff -u -p -r1.6 signals.c
--- signals/signals.c 26 Mar 2003 16:29:39 -0000 1.6
+++ signals/signals.c 26 Mar 2003 17:20:10 -0000
@@ -39,8 +39,8 @@
# define REALTIME_LO __SIGRTMIN
# define REALTIME_HI __SIGRTMAX
# elif defined(SIGRTMIN)
-# define REALTIME_LO __SIGRTMIN
-# define REALTIME_HI __SIGRTMAX
+# define REALTIME_LO SIGRTMIN
+# define REALTIME_HI SIGRTMAX
# endif
#endif
prev parent reply other threads:[~2003-03-26 17:21 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-03-26 16:32 Daniel Jacobowitz
2003-03-26 17:17 ` Andreas Schwab
2003-03-26 17:21 ` Daniel Jacobowitz [this message]
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=20030326172056.GA1766@nevyn.them.org \
--to=drow@mvista.com \
--cc=gdb-patches@sources.redhat.com \
--cc=schwab@suse.de \
/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