mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: David Relson <relson@osagesoftware.com>
To: manu@agat.net
Cc: lkml <linux-kernel@vger.kernel.org>
Subject: Re: what happened with thread, from 2.2 to 2.4 ?!
Date: Sun, 02 Dec 2001 11:31:20 -0500	[thread overview]
Message-ID: <4.3.2.7.2.20011202110544.00e49cd0@mail.osagesoftware.com> (raw)
In-Reply-To: <01120215334302.00742@extasia>

At 09:33 AM 12/2/01, you wrote:
>Hi
>what happenned with thread from 2.2 to 2.4?
>I have some problems with threaded programs, working under 2.2 and no more
>under 2.4
>The test program is short:
>----
>#include <stdlib.h>
>void main() {
>   char *t="1.0";
>   double d=0;
>   d=strtod(t,(char **)NULL);
>}
>---
>this program compiled with "gcc -g -lpthread test.c" has strange behaviour.
>The problem only appear using gdb to see the value of d
>In most case, the value returned by strtod under a 2.4 kernel is nan.
>I say most, because some 2.4 kernels don't fail other this line.
>I have done some test with differents distributions, and so differents
>version of kernel, gcc, gdb and libc.
>http://manu.agat.net/bug.html
>
>When it was possible, for the computer with the bug, under an 2.4 kernel,
>I've recompiled a 2.2.20, and the bug has disappeared!
>
>Does someone have an idea about that ?

I verified your problem using 2.4.16 (with gdb-20010813(MI_OUT)) and 
2.2.15pre18 (with gdb-4.18).  Thinking about it, I remembered that in the 
past there have been some problems with newer versions of gdb with threaded 
programs.  So, I tried using gdb-4.18 on 2.4.16 and it worked fine.

Methinks that this looks like a gdb issue.

As further testing I added a couple of statements after the strtod() call:
         printf( "%f\n", d);
         return;

If I step through the program, I see the nan value displayed by gdb and 
also printed by printf().  If I put a breakpoint at the printf() and run 
the program, the proper value is printed out.  This looks a whole lot like 
gdb is having a problem when stepping over the strtod() call.

I will forward a copy of this message to the gdb mailing list.

David


  reply	other threads:[~2001-12-02 16:33 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-12-02 14:33 Blindauer Emmanuel
2001-12-02 16:31 ` David Relson [this message]
2001-12-04 18:37 ` Gerold Jury
2001-12-02 15:42 Manfred Spraul

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=4.3.2.7.2.20011202110544.00e49cd0@mail.osagesoftware.com \
    --to=relson@osagesoftware.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=manu@agat.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