public inbox for libc-hacker@sourceware.org
 help / color / mirror / Atom feed
* prepare for 2.1.3
@ 1999-11-10  0:17 Ulrich Drepper
  1999-11-10 12:53 ` Joel Klecker
  0 siblings, 1 reply; 4+ messages in thread
From: Ulrich Drepper @ 1999-11-10  0:17 UTC (permalink / raw)
  To: GNU libc hacker

Hi,

Slowly but surely we should think about 2.1.3.  I've added quite a few
mainline changes to 2.1 today.  If you think anything is missing let
me know.  Also please tell me whether there are any non-trivial PRs
outstanding.

Thanks,

-- 
---------------.      drepper at gnu.org  ,-.   1325 Chesapeake Terrace
Ulrich Drepper  \    ,-------------------'   \  Sunnyvale, CA 94089 USA
Cygnus Solutions `--' drepper at cygnus.com   `------------------------

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: prepare for 2.1.3
  1999-11-10  0:17 prepare for 2.1.3 Ulrich Drepper
@ 1999-11-10 12:53 ` Joel Klecker
  1999-11-10 13:03   ` Ulrich Drepper
  0 siblings, 1 reply; 4+ messages in thread
From: Joel Klecker @ 1999-11-10 12:53 UTC (permalink / raw)
  To: GNU libc hacker

At 12:14 AM -0800 11/10/99, Ulrich Drepper wrote:
>Slowly but surely we should think about 2.1.3.  I've added quite a few
>mainline changes to 2.1 today.  If you think anything is missing let
>me know.

You don't appear to have fixed the issue I found with --with-headers 
and linuxthreads/signals.c yet.
-- 
Joel Klecker (aka Espy)                    Debian GNU/Linux Developer
<URL: mailto:jk@espy.org >                 <URL: mailto:espy@debian.org >
<URL: http://web.espy.org/ >               <URL: http://www.debian.org/ >

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: prepare for 2.1.3
  1999-11-10 12:53 ` Joel Klecker
@ 1999-11-10 13:03   ` Ulrich Drepper
  1999-11-10 14:56     ` Joel Klecker
  0 siblings, 1 reply; 4+ messages in thread
From: Ulrich Drepper @ 1999-11-10 13:03 UTC (permalink / raw)
  To: Joel Klecker; +Cc: GNU libc hacker

Joel Klecker <jk@espy.org> writes:

> You don't appear to have fixed the issue I found with --with-headers 
> and linuxthreads/signals.c yet.

You'll have to elaborate this.  I don't think I have anything about
this in my mail folders.

-- 
---------------.      drepper at gnu.org  ,-.   1325 Chesapeake Terrace
Ulrich Drepper  \    ,-------------------'   \  Sunnyvale, CA 94089 USA
Cygnus Solutions `--' drepper at cygnus.com   `------------------------

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: prepare for 2.1.3
  1999-11-10 13:03   ` Ulrich Drepper
@ 1999-11-10 14:56     ` Joel Klecker
  0 siblings, 0 replies; 4+ messages in thread
From: Joel Klecker @ 1999-11-10 14:56 UTC (permalink / raw)
  To: GNU libc hacker

At 13:00 -0800 1999-11-10, Ulrich Drepper wrote:
>Joel Klecker <jk@espy.org> writes:
>
>> You don't appear to have fixed the issue I found with --with-headers 
>> and linuxthreads/signals.c yet.
>
>You'll have to elaborate this.  I don't think I have anything about
>this in my mail folders.

Here's the message I sent:

<<
Date: Fri, 22 Oct 1999 00:10:19 -0700
To: libc-hacker@sourceware.cygnus.com
From: Joel Klecker <jk@espy.org>
Subject: Current glibc-2-1-branch linuxthreads/signals.c doesn't compile

Without --with-headers, <ucontext.h> ends up being gotten from the system
headers, which is perhaps why this wasn't caught before.
linuxthreads/signals.c doesn't appear to need any of the functions prototyped in
<ucontext.h>, so I believe this is the correct fix.

1999-10-22 Joel Klecker <espy@debian.org>

	* signals.c: Include <sys/ucontext.h> instead of <ucontext.h>.

Index: linuxthreads/signals.c
===================================================================
RCS file: /cvs/glibc/libc/linuxthreads/signals.c,v
retrieving revision 1.8.2.3
diff -u -r1.8.2.3 signals.c
--- linuxthreads/signals.c	1999/09/25 16:59:50	1.8.2.3
+++ linuxthreads/signals.c	1999/10/22 06:54:36
@@ -19,7 +19,7 @@
 #include "pthread.h"
 #include "internals.h"
 #include "spinlock.h"
-#include <ucontext.h>
+#include <sys/ucontext.h>
 #include <sigcontextinfo.h>
 
 int pthread_sigmask(int how, const sigset_t * newmask, sigset_t * oldmask)
-- 
Joel Klecker (aka Espy)       <URL: mailto:espy@debian.org >
Debian Package Maintainer for the GNU C Library.
>>

And your reply:

<<
To: Joel Klecker <jk@espy.org>
Cc: libc-hacker@sourceware.cygnus.com
Subject: Re: Current glibc-2-1-branch linuxthreads/signals.c doesn't compile
Reply-To: drepper@cygnus.com (Ulrich Drepper)
X-fingerprint: BE 3B 21 04 BC 77 AC F0  61 92 E4 CB AC DD B9 5A
From: Ulrich Drepper <drepper@cygnus.com>
Date: 23 Oct 1999 10:04:53 -0700

Joel Klecker <jk@espy.org> writes:

> linuxthreads/signals.c doesn't appear to need any of the functions
> prototyped in <ucontext.h>, so I believe this is the correct fix.

I prefer to have the real heade included and so I make the same change
as for 2.2 (where I fixed this already some time ago).

-- 
---------------.      drepper at gnu.org  ,-.   1325 Chesapeake Terrace
Ulrich Drepper  \    ,-------------------'   \  Sunnyvale, CA 94089 USA
Cygnus Solutions `--' drepper at cygnus.com   `------------------------
>>
-- 
Joel Klecker (aka Espy)                    Debian GNU/Linux Developer
<URL: mailto:jk@espy.org >                 <URL: mailto:espy@debian.org >
<URL: http://web.espy.org/ >               <URL: http://www.debian.org/ >

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~1999-11-10 14:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-11-10  0:17 prepare for 2.1.3 Ulrich Drepper
1999-11-10 12:53 ` Joel Klecker
1999-11-10 13:03   ` Ulrich Drepper
1999-11-10 14:56     ` Joel Klecker

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 read-only IMAP folder(s) and NNTP newsgroup(s).