|
From: Bill D. <cab...@ho...> - 2003-04-28 17:25:28
|
Julian, Yes that's the problem. Multithreaded program hanging all threads on select statement. RH8.0 with the latest patches which include the following glibc rpm's glibc-2.3.2-4.80 glibc-utils-2.3.2-4.80 glibc-debug-2.3.2-4.80 glibc-common-2.3.2-4.80 glibc-debug-static-2.3.2-4.80 glibc-profile-2.3.2-4.80 glibc-kernheaders-2.4-7.20 glibc-devel-2.3.2-4.80 O.k. dumb question. I've checked out the code from cvs, how to I get configure to work? autoconf gives me: autoconf configure.in:3: error: possibly undefined macro: AM_CONFIG_HEADER configure.in:4: error: possibly undefined macro: AM_INIT_AUTOMAKE configure.in:6: error: possibly undefined macro: AM_MAINTAINER_MODE Thanks, Bill >From: Julian Seward <js...@ac...> >To: "William Deegan" <cab...@ho...>, ><val...@li...> >Subject: Re: [Valgrind-users] RH8 & Glibc 2.3 >Date: Mon, 28 Apr 2003 08:44:27 +0100 > > > > Is there a known problem with glibc 2.3 and valgrind on redhat 8.0? > > Any workarounds? > >Hard to say, since you mention no specific details of any problem. >There is a threading problem -- some calls like accept, recv, >select, poll, etc, can lead to all threads being blocked rather >than just one. I've fixed this in the cvs head and will backport >the fix to 1.9.6. It only afflicts glibc >= 2.3.2. > >J > > > > > > > Thanks, > > Bill > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Valgrind-users mailing list > > Val...@li... > > https://lists.sourceforge.net/lists/listinfo/valgrind-users > > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >Valgrind-users mailing list >Val...@li... >https://lists.sourceforge.net/lists/listinfo/valgrind-users _________________________________________________________________ STOP MORE SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail |
|
From: Nicholas N. <nj...@ca...> - 2003-04-28 17:43:02
|
On Mon, 28 Apr 2003, Bill Deegan wrote: > O.k. dumb question. I've checked out the code from cvs, how to > I get configure to work? > > autoconf gives me: > autoconf > configure.in:3: error: possibly undefined macro: AM_CONFIG_HEADER > configure.in:4: error: possibly undefined macro: AM_INIT_AUTOMAKE > configure.in:6: error: possibly undefined macro: AM_MAINTAINER_MODE Run "autogen.sh ; ./configure --prefix=wherever ; make install". Not a dumb question, I don't think we say that anywhere, we should... N |
|
From: Nicholas N. <nj...@ca...> - 2003-04-28 18:28:22
|
On Mon, 28 Apr 2003, Nicholas Nethercote wrote: > Run "autogen.sh ; ./configure --prefix=wherever ; make install". Not a > dumb question, I don't think we say that anywhere, we should... Ah, actually it's in the README. N |
|
From: Julian S. <js...@ac...> - 2003-04-28 20:54:33
|
On Monday 28 April 2003 6:25 pm, Bill Deegan wrote: > Julian, > > Yes that's the problem. Multithreaded program hanging > all threads on select statement. > > RH8.0 with the latest patches which include the following glibc rpm's > glibc-2.3.2-4.80 > glibc-utils-2.3.2-4.80 > glibc-debug-2.3.2-4.80 > glibc-common-2.3.2-4.80 > glibc-debug-static-2.3.2-4.80 > glibc-profile-2.3.2-4.80 > glibc-kernheaders-2.4-7.20 > glibc-devel-2.3.2-4.80 > > O.k. dumb question. I've checked out the code from cvs, how to > I get configure to work? ./autogen.sh ./configure --prefix=... make install is what we do. The autogen.sh seems to do all the grungy autoconf bits; i didn't write it, but it appears to work. J > > autoconf gives me: > autoconf > configure.in:3: error: possibly undefined macro: AM_CONFIG_HEADER > configure.in:4: error: possibly undefined macro: AM_INIT_AUTOMAKE > configure.in:6: error: possibly undefined macro: AM_MAINTAINER_MODE > > Thanks, > Bill > > > > > > From: Julian Seward <js...@ac...> > > >To: "William Deegan" <cab...@ho...>, > ><val...@li...> > >Subject: Re: [Valgrind-users] RH8 & Glibc 2.3 > >Date: Mon, 28 Apr 2003 08:44:27 +0100 > > > > > Is there a known problem with glibc 2.3 and valgrind on redhat 8.0? > > > Any workarounds? > > > >Hard to say, since you mention no specific details of any problem. > >There is a threading problem -- some calls like accept, recv, > >select, poll, etc, can lead to all threads being blocked rather > >than just one. I've fixed this in the cvs head and will backport > >the fix to 1.9.6. It only afflicts glibc >= 2.3.2. > > > >J > > > > > Thanks, > > > Bill > > > > > > > > > ------------------------------------------------------- > > > This sf.net email is sponsored by:ThinkGeek > > > Welcome to geek heaven. > > > http://thinkgeek.com/sf > > > _______________________________________________ > > > Valgrind-users mailing list > > > Val...@li... > > > https://lists.sourceforge.net/lists/listinfo/valgrind-users > > > >------------------------------------------------------- > >This sf.net email is sponsored by:ThinkGeek > >Welcome to geek heaven. > >http://thinkgeek.com/sf > >_______________________________________________ > >Valgrind-users mailing list > >Val...@li... > >https://lists.sourceforge.net/lists/listinfo/valgrind-users > > _________________________________________________________________ > STOP MORE SPAM with the new MSN 8 and get 2 months FREE* > http://join.msn.com/?page=features/junkmail |
|
From: William D. <cab...@ho...> - 2003-04-28 18:23:07
|
Julian, Thanks! Building now. Will let you know if this does/doesn't fix our problem. _Bill ----- Original Message ----- From: "Julian Seward" <js...@ac...> To: "Bill Deegan" <cab...@ho...>; <val...@li...> Sent: Monday, April 28, 2003 11:16 AM Subject: Re: [Valgrind-users] RH8 & Glibc 2.3 > On Monday 28 April 2003 6:25 pm, Bill Deegan wrote: > > Julian, > > > > Yes that's the problem. Multithreaded program hanging > > all threads on select statement. > > > > RH8.0 with the latest patches which include the following glibc rpm's > > glibc-2.3.2-4.80 > > glibc-utils-2.3.2-4.80 > > glibc-debug-2.3.2-4.80 > > glibc-common-2.3.2-4.80 > > glibc-debug-static-2.3.2-4.80 > > glibc-profile-2.3.2-4.80 > > glibc-kernheaders-2.4-7.20 > > glibc-devel-2.3.2-4.80 > > > > O.k. dumb question. I've checked out the code from cvs, how to > > I get configure to work? > > ./autogen.sh > ./configure --prefix=... > make install > > is what we do. The autogen.sh seems to do all the grungy autoconf > bits; i didn't write it, but it appears to work. > > J > > > > > > autoconf gives me: > > autoconf > > configure.in:3: error: possibly undefined macro: AM_CONFIG_HEADER > > configure.in:4: error: possibly undefined macro: AM_INIT_AUTOMAKE > > configure.in:6: error: possibly undefined macro: AM_MAINTAINER_MODE > > > > Thanks, > > Bill > > > > > > > > > > > > From: Julian Seward <js...@ac...> > > > > >To: "William Deegan" <cab...@ho...>, > > ><val...@li...> > > >Subject: Re: [Valgrind-users] RH8 & Glibc 2.3 > > >Date: Mon, 28 Apr 2003 08:44:27 +0100 > > > > > > > Is there a known problem with glibc 2.3 and valgrind on redhat 8.0? > > > > Any workarounds? > > > > > >Hard to say, since you mention no specific details of any problem. > > >There is a threading problem -- some calls like accept, recv, > > >select, poll, etc, can lead to all threads being blocked rather > > >than just one. I've fixed this in the cvs head and will backport > > >the fix to 1.9.6. It only afflicts glibc >= 2.3.2. > > > > > >J > > > > > > > Thanks, > > > > Bill > > > > > > > > > > > > ------------------------------------------------------- > > > > This sf.net email is sponsored by:ThinkGeek > > > > Welcome to geek heaven. > > > > http://thinkgeek.com/sf > > > > _______________________________________________ > > > > Valgrind-users mailing list > > > > Val...@li... > > > > https://lists.sourceforge.net/lists/listinfo/valgrind-users > > > > > >------------------------------------------------------- > > >This sf.net email is sponsored by:ThinkGeek > > >Welcome to geek heaven. > > >http://thinkgeek.com/sf > > >_______________________________________________ > > >Valgrind-users mailing list > > >Val...@li... > > >https://lists.sourceforge.net/lists/listinfo/valgrind-users > > > > _________________________________________________________________ > > STOP MORE SPAM with the new MSN 8 and get 2 months FREE* > > http://join.msn.com/?page=features/junkmail > > |