Return-Path: X-Original-To: apmail-activemq-users-archive@www.apache.org Delivered-To: apmail-activemq-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7640BD450 for ; Tue, 15 Jan 2013 21:17:11 +0000 (UTC) Received: (qmail 64442 invoked by uid 500); 15 Jan 2013 21:17:11 -0000 Delivered-To: apmail-activemq-users-archive@activemq.apache.org Received: (qmail 64397 invoked by uid 500); 15 Jan 2013 21:17:10 -0000 Mailing-List: contact users-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@activemq.apache.org Delivered-To: mailing list users@activemq.apache.org Received: (qmail 64387 invoked by uid 99); 15 Jan 2013 21:17:10 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Jan 2013 21:17:10 +0000 X-ASF-Spam-Status: No, hits=2.3 required=5.0 tests=SPF_SOFTFAIL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: softfail (athena.apache.org: transitioning domain of jeffreyhasmail@hotmail.com does not designate 216.139.250.139 as permitted sender) Received: from [216.139.250.139] (HELO joe.nabble.com) (216.139.250.139) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Jan 2013 21:17:05 +0000 Received: from [192.168.236.139] (helo=joe.nabble.com) by joe.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1TvDsC-0003L5-2U for users@activemq.apache.org; Tue, 15 Jan 2013 13:16:44 -0800 Date: Tue, 15 Jan 2013 13:16:44 -0800 (PST) From: jeffrey To: users@activemq.apache.org Message-ID: <1358284604001-4661783.post@n4.nabble.com> In-Reply-To: <1357921037.2789.3.camel@OfficePC> References: <1357916561742-4661659.post@n4.nabble.com> <1357921037.2789.3.camel@OfficePC> Subject: Re: ActiveMQ cpp 3.5.0 not working on HPUX 11.31 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org so trying to solve this, I finally got some information from looking it the core dump back traces. And in the file decaf/lang/Thread.cpp about line 133 there is a CATCHALL_NOTHROW that was catching the runtime exception in the destructor for Thread. So I went deeper and in decaf/internal/util/concurrent/unix/PlatformThread.cpp about line 76 there is a call to pthread_mutex_lock, and the return code is not check, a runtime exception is simply thrown if it isnt 0, so i added in to get the number. The number was 22, that is for EINVAL: mutex is not an initalized mutex. I am still looking, but I do not know the full flow of the program so it takes quite some time, I can see that the whole way threads and mutexes are done changed drastically from 3.4.5 to 3.5.0. I am just looking for some insight to the changes so I can resolve this on my platform. Thanks. -- View this message in context: http://activemq.2283324.n4.nabble.com/ActiveMQ-cpp-3-5-0-not-working-on-HPUX-11-31-tp4661659p4661783.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.