Re: [AOLSERVER] Tcl 8.5.12 + AOLserver trunk

2012-10-01 Thread Jack Schmidt
In my case, DH_free was the point of the crash.  I ran configure with this
flag: -DNO_DH=1 to disable that.

You might need to look into why yours is crashing at the function in your
backtrace.
On Oct 1, 2012 8:09 PM, "Wolfgang Winkler" <
wolfgang.wink...@digital-concepts.com> wrote:

>  I'm configuring with
>
> ./configure --enable-threads
>
> This are the compiler flags in the Makfile:
>
> PACKAGE_NAME  = tls
> PACKAGE_VERSION = 1.6.3
> CC= gcc
> CFLAGS_DEFAULT  = -O2 -fomit-frame-pointer
> CFLAGS_WARNING  = -Wall
> CLEANFILES  = pkgIndex.tcl
>
> I'm using the CVS head version 1.6.3.
>
> Wolfgang
>
> Am 2012-10-01 14:02, schrieb Jack Schmidt:
>
> In the past, I have experienced crashes with tls 1.6 and AOLserver.  Can
> you post your compile flags for tls?
> On Oct 1, 2012 7:04 PM, "Wolfgang Winkler" <
> wolfgang.wink...@digital-concepts.com> wrote:
>
>> And I had this line in the log:
>>
>> *** glibc detected *** /usr/local/aolserver_4.5.1/bin/nsd: double free
>> or corruption (fasttop): 0x7fffe73f7770 ***
>>
>> Wolfgang
>>
>> Am 2012-10-01 12:42, schrieb Gustaf Neumann:
>> > I would recommend to remove
>> >
>> > --enable-symbols=mem
>> >
>> > from the tcl configuration
>> >
>> > -gustaf neumann
>> >
>> > On 01.10.12 12:08, Wolfgang Winkler wrote:
>> >> Hi!
>> >>
>> >> I've just recompiled aolserver + tcl:
>> >>
>> >> aolserver from git trunk:
>> >>
>> >> ./configure \
>> >>--prefix=/usr/local/aolserver_4.5.1 \
>> >>--with-tcl=/usr/local/lib/ \
>> >>--enable-threads \
>> >>--with-google-coredumper=/usr/local \
>> >>--enable-symbols
>> >>
>> >> tcl 8.5.12:
>> >>
>> >> ./configure\
>> >> --enable-symbols   \
>> >> --enable-threads  \
>> >>--enable-symbols=mem
>> >>
>> >
>> >
>> --
>> > Got visibility?
>> > Most devs has no idea what their production app looks like.
>> > Find out how fast your code is with AppDynamics Lite.
>> > http://ad.doubleclick.net/clk;262219671;13503038;y?
>> > http://info.appdynamics.com/FreeJavaPerformanceDownload.html
>> > ___
>> > aolserver-talk mailing list
>> > aolserver-talk@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/aolserver-talk
>>
>>
>> --
>> digital concepts OG
>> Software & Design
>> Landstrasse 68 / 5. Stock
>> A - 4020 Linz
>>
>> Büro:  +43 732 99711772 <%2B43%20732%2099711772>
>> Mobil: +43 699 19971172 <%2B43%20699%2019971172>
>>
>>
>>
>> --
>> Got visibility?
>> Most devs has no idea what their production app looks like.
>> Find out how fast your code is with AppDynamics Lite.
>> http://ad.doubleclick.net/clk;262219671;13503038;y?
>> http://info.appdynamics.com/FreeJavaPerformanceDownload.html
>> ___
>> aolserver-talk mailing list
>> aolserver-talk@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/aolserver-talk
>>
>
>
> --
> digital concepts OG
> Software & Design
> Landstrasse 68 / 5. Stock
> A - 4020 Linz
>
> Büro:  +43 732 99711772
> Mobil: +43 699 19971172
>
>
--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html___
aolserver-talk mailing list
aolserver-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/aolserver-talk


Re: [AOLSERVER] Tcl 8.5.12 + AOLserver trunk

2012-10-01 Thread Wolfgang Winkler

Since I switched from TLS 1.6.1 to 1.6.3 I get the following error:

0x776ec29e in TclpAlloc (reqSize=42) at 
/root/sourcen/tcl8.5.12/unix/../generic/tclThreadAlloc.c:337
337 cachePtr->buckets[bucket].firstPtr = 
blockPtr->nextBlock;


(gdb) bt
#0  0x776ec29e in TclpAlloc (reqSize=42) at 
/root/sourcen/tcl8.5.12/unix/../generic/tclThreadAlloc.c:337
#1  0x77621179 in Tcl_Alloc (size=42) at 
/root/sourcen/tcl8.5.12/unix/../generic/tclCkalloc.c:1054
#2  0x77693a89 in AllocStringEntry (tablePtr=0x20cad10, 
keyPtr=0x7fffeed6a135) at 
/root/sourcen/tcl8.5.12/unix/../generic/tclHash.c:852
#3  0x776932aa in CreateHashEntry (tablePtr=0x20cad10, 
key=0x7fffeed6a135 "handshake", newPtr=0x7fffece338fc) at 
/root/sourcen/tcl8.5.12/unix/../generic/tclHash.c:361
#4  0x77616f69 in Tcl_CreateObjCommand (interp=0x7343bb00, 
cmdName=0x7fffeed6a130 "tls::handshake", proc=0x7fffeed67100 
, clientData=0x0, deleteProc=0)

at /root/sourcen/tcl8.5.12/unix/../generic/tclBasic.c:2024
#5  0x7fffeed65746 in Tls_Init () from 
/usr/local/lib/tls1.6.3/libtls1.6.3.so



Am 2012-10-01 14:09, schrieb Wolfgang Winkler:

I'm configuring with

./configure --enable-threads

This are the compiler flags in the Makfile:

PACKAGE_NAME  = tls
PACKAGE_VERSION = 1.6.3
CC= gcc
CFLAGS_DEFAULT  = -O2 -fomit-frame-pointer
CFLAGS_WARNING  = -Wall
CLEANFILES  = pkgIndex.tcl

I'm using the CVS head version 1.6.3.

Wolfgang

Am 2012-10-01 14:02, schrieb Jack Schmidt:


In the past, I have experienced crashes with tls 1.6 and AOLserver.  
Can you post your compile flags for tls?


On Oct 1, 2012 7:04 PM, "Wolfgang Winkler" 
> wrote:


And I had this line in the log:

*** glibc detected *** /usr/local/aolserver_4.5.1/bin/nsd: double
free
or corruption (fasttop): 0x7fffe73f7770 ***

Wolfgang

Am 2012-10-01 12:42, schrieb Gustaf Neumann:
> I would recommend to remove
>
> --enable-symbols=mem
>
> from the tcl configuration
>
> -gustaf neumann
>
> On 01.10.12 12:08, Wolfgang Winkler wrote:
>> Hi!
>>
>> I've just recompiled aolserver + tcl:
>>
>> aolserver from git trunk:
>>
>> ./configure \
>>--prefix=/usr/local/aolserver_4.5.1 \
>>--with-tcl=/usr/local/lib/ \
>>--enable-threads \
>>--with-google-coredumper=/usr/local \
>>--enable-symbols
>>
>> tcl 8.5.12:
>>
>> ./configure\
>> --enable-symbols   \
>> --enable-threads  \
>>  --enable-symbols=mem
>>
>
>

--
> Got visibility?
> Most devs has no idea what their production app looks like.
> Find out how fast your code is with AppDynamics Lite.
> http://ad.doubleclick.net/clk;262219671;13503038;y?
> http://info.appdynamics.com/FreeJavaPerformanceDownload.html
> ___
> aolserver-talk mailing list
> aolserver-talk@lists.sourceforge.net

> https://lists.sourceforge.net/lists/listinfo/aolserver-talk


--
digital concepts OG
Software & Design
Landstrasse 68 / 5. Stock
A - 4020 Linz

Büro: +43 732 99711772 
Mobil: +43 699 19971172 



--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
aolserver-talk mailing list
aolserver-talk@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/aolserver-talk




--
digital concepts OG
Software & Design
Landstrasse 68 / 5. Stock
A - 4020 Linz

Büro:  +43 732 99711772
Mobil: +43 699 19971172


--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html


___
aolserver-talk mailing list
aolserver-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/aolserver-talk



--
digital concepts OG
Software & Design
Landstrasse 68 / 5. Stock
A - 4020 Linz

Büro:  +43 732 99711772
Mobil: +43 699 19971172

--
Got visibility?
Most devs has no idea what their production app looks 

Re: [AOLSERVER] Tcl 8.5.12 + AOLserver trunk

2012-10-01 Thread Wolfgang Winkler

I'm configuring with

./configure --enable-threads

This are the compiler flags in the Makfile:

PACKAGE_NAME  = tls
PACKAGE_VERSION = 1.6.3
CC= gcc
CFLAGS_DEFAULT  = -O2 -fomit-frame-pointer
CFLAGS_WARNING  = -Wall
CLEANFILES  = pkgIndex.tcl

I'm using the CVS head version 1.6.3.

Wolfgang

Am 2012-10-01 14:02, schrieb Jack Schmidt:


In the past, I have experienced crashes with tls 1.6 and AOLserver.  
Can you post your compile flags for tls?


On Oct 1, 2012 7:04 PM, "Wolfgang Winkler" 
> wrote:


And I had this line in the log:

*** glibc detected *** /usr/local/aolserver_4.5.1/bin/nsd: double free
or corruption (fasttop): 0x7fffe73f7770 ***

Wolfgang

Am 2012-10-01 12:42, schrieb Gustaf Neumann:
> I would recommend to remove
>
> --enable-symbols=mem
>
> from the tcl configuration
>
> -gustaf neumann
>
> On 01.10.12 12:08, Wolfgang Winkler wrote:
>> Hi!
>>
>> I've just recompiled aolserver + tcl:
>>
>> aolserver from git trunk:
>>
>> ./configure \
>>--prefix=/usr/local/aolserver_4.5.1 \
>>--with-tcl=/usr/local/lib/ \
>>--enable-threads \
>>--with-google-coredumper=/usr/local \
>>--enable-symbols
>>
>> tcl 8.5.12:
>>
>> ./configure\
>> --enable-symbols   \
>> --enable-threads  \
>>  --enable-symbols=mem
>>
>
>

--
> Got visibility?
> Most devs has no idea what their production app looks like.
> Find out how fast your code is with AppDynamics Lite.
> http://ad.doubleclick.net/clk;262219671;13503038;y?
> http://info.appdynamics.com/FreeJavaPerformanceDownload.html
> ___
> aolserver-talk mailing list
> aolserver-talk@lists.sourceforge.net

> https://lists.sourceforge.net/lists/listinfo/aolserver-talk


--
digital concepts OG
Software & Design
Landstrasse 68 / 5. Stock
A - 4020 Linz

Büro: +43 732 99711772 
Mobil: +43 699 19971172 



--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
aolserver-talk mailing list
aolserver-talk@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/aolserver-talk




--
digital concepts OG
Software & Design
Landstrasse 68 / 5. Stock
A - 4020 Linz

Büro:  +43 732 99711772
Mobil: +43 699 19971172

--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html___
aolserver-talk mailing list
aolserver-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/aolserver-talk


Re: [AOLSERVER] Tcl 8.5.12 + AOLserver trunk

2012-10-01 Thread Jack Schmidt
In the past, I have experienced crashes with tls 1.6 and AOLserver.  Can
you post your compile flags for tls?
On Oct 1, 2012 7:04 PM, "Wolfgang Winkler" <
wolfgang.wink...@digital-concepts.com> wrote:

> And I had this line in the log:
>
> *** glibc detected *** /usr/local/aolserver_4.5.1/bin/nsd: double free
> or corruption (fasttop): 0x7fffe73f7770 ***
>
> Wolfgang
>
> Am 2012-10-01 12:42, schrieb Gustaf Neumann:
> > I would recommend to remove
> >
> > --enable-symbols=mem
> >
> > from the tcl configuration
> >
> > -gustaf neumann
> >
> > On 01.10.12 12:08, Wolfgang Winkler wrote:
> >> Hi!
> >>
> >> I've just recompiled aolserver + tcl:
> >>
> >> aolserver from git trunk:
> >>
> >> ./configure \
> >>--prefix=/usr/local/aolserver_4.5.1 \
> >>--with-tcl=/usr/local/lib/ \
> >>--enable-threads \
> >>--with-google-coredumper=/usr/local \
> >>--enable-symbols
> >>
> >> tcl 8.5.12:
> >>
> >> ./configure\
> >> --enable-symbols   \
> >> --enable-threads  \
> >>--enable-symbols=mem
> >>
> >
> >
> --
> > Got visibility?
> > Most devs has no idea what their production app looks like.
> > Find out how fast your code is with AppDynamics Lite.
> > http://ad.doubleclick.net/clk;262219671;13503038;y?
> > http://info.appdynamics.com/FreeJavaPerformanceDownload.html
> > ___
> > aolserver-talk mailing list
> > aolserver-talk@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/aolserver-talk
>
>
> --
> digital concepts OG
> Software & Design
> Landstrasse 68 / 5. Stock
> A - 4020 Linz
>
> Büro:  +43 732 99711772
> Mobil: +43 699 19971172
>
>
>
> --
> Got visibility?
> Most devs has no idea what their production app looks like.
> Find out how fast your code is with AppDynamics Lite.
> http://ad.doubleclick.net/clk;262219671;13503038;y?
> http://info.appdynamics.com/FreeJavaPerformanceDownload.html
> ___
> aolserver-talk mailing list
> aolserver-talk@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/aolserver-talk
>
--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html___
aolserver-talk mailing list
aolserver-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/aolserver-talk


Re: [AOLSERVER] Tcl 8.5.12 + AOLserver trunk

2012-10-01 Thread Wolfgang Winkler
And I had this line in the log:

*** glibc detected *** /usr/local/aolserver_4.5.1/bin/nsd: double free 
or corruption (fasttop): 0x7fffe73f7770 ***

Wolfgang

Am 2012-10-01 12:42, schrieb Gustaf Neumann:
> I would recommend to remove
>
> --enable-symbols=mem
>
> from the tcl configuration
>
> -gustaf neumann
>
> On 01.10.12 12:08, Wolfgang Winkler wrote:
>> Hi!
>>
>> I've just recompiled aolserver + tcl:
>>
>> aolserver from git trunk:
>>
>> ./configure \
>>--prefix=/usr/local/aolserver_4.5.1 \
>>--with-tcl=/usr/local/lib/ \
>>--enable-threads \
>>--with-google-coredumper=/usr/local \
>>--enable-symbols
>>
>> tcl 8.5.12:
>>
>> ./configure\
>> --enable-symbols   \
>> --enable-threads  \
>>--enable-symbols=mem
>>
>
> --
> Got visibility?
> Most devs has no idea what their production app looks like.
> Find out how fast your code is with AppDynamics Lite.
> http://ad.doubleclick.net/clk;262219671;13503038;y?
> http://info.appdynamics.com/FreeJavaPerformanceDownload.html
> ___
> aolserver-talk mailing list
> aolserver-talk@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/aolserver-talk


-- 
digital concepts OG
Software & Design
Landstrasse 68 / 5. Stock
A - 4020 Linz

Büro:  +43 732 99711772
Mobil: +43 699 19971172


--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
aolserver-talk mailing list
aolserver-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/aolserver-talk


Re: [AOLSERVER] Tcl 8.5.12 + AOLserver trunk

2012-10-01 Thread Gustaf Neumann
I would recommend to remove

--enable-symbols=mem

from the tcl configuration

-gustaf neumann

On 01.10.12 12:08, Wolfgang Winkler wrote:
> Hi!
>
> I've just recompiled aolserver + tcl:
>
> aolserver from git trunk:
>
> ./configure \
>   --prefix=/usr/local/aolserver_4.5.1 \
>   --with-tcl=/usr/local/lib/ \
>   --enable-threads \
>   --with-google-coredumper=/usr/local \
>   --enable-symbols
>
> tcl 8.5.12:
>
> ./configure\
> --enable-symbols   \
> --enable-threads  \
>   --enable-symbols=mem
>


--
Got visibility?
Most devs has no idea what their production app looks like.
Find out how fast your code is with AppDynamics Lite.
http://ad.doubleclick.net/clk;262219671;13503038;y?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
___
aolserver-talk mailing list
aolserver-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/aolserver-talk