From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 476B0E00801; Thu, 7 Aug 2014 01:36:55 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW, SPF_HELO_PASS autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low * trust * [207.46.163.204 listed in list.dnswl.org] * -0.0 SPF_HELO_PASS SPF: HELO matches SPF record * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from na01-bl2-obe.outbound.protection.outlook.com (mail-bl2lp0204.outbound.protection.outlook.com [207.46.163.204]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id C5752E007FE for ; Thu, 7 Aug 2014 01:36:41 -0700 (PDT) Received: from BN3PR0301CA0015.namprd03.prod.outlook.com (25.160.180.153) by BY2PR03MB411.namprd03.prod.outlook.com (10.141.141.22) with Microsoft SMTP Server (TLS) id 15.0.995.14; Thu, 7 Aug 2014 08:36:32 +0000 Received: from BL2FFO11FD033.protection.gbl (2a01:111:f400:7c09::119) by BN3PR0301CA0015.outlook.office365.com (2a01:111:e400:4000::25) with Microsoft SMTP Server (TLS) id 15.0.1005.10 via Frontend Transport; Thu, 7 Aug 2014 08:36:31 +0000 Received: from tx30smr01.am.freescale.net (192.88.168.50) by BL2FFO11FD033.mail.protection.outlook.com (10.173.161.129) with Microsoft SMTP Server (TLS) id 15.0.990.10 via Frontend Transport; Thu, 7 Aug 2014 08:36:31 +0000 Received: from r01007-02.ap.freescale.net (R01007-02-010192241030.ap.freescale.net [10.192.241.30]) by tx30smr01.am.freescale.net (8.14.3/8.14.0) with ESMTP id s778aSxq025691; Thu, 7 Aug 2014 01:36:30 -0700 From: Jun Zhu To: Date: Thu, 7 Aug 2014 16:28:41 +0800 Message-ID: <1407400121-24330-1-git-send-email-R01007@freescale.com> X-Mailer: git-send-email 1.7.9.5 X-EOPAttributedMessage: 0 X-Forefront-Antispam-Report: CIP:192.88.168.50; CTRY:US; IPV:CAL; IPV:NLI; EFV:NLI; SFV:NSPM; SFS:(6009001)(199002)(189002)(19580395003)(68736004)(79102001)(62966002)(106466001)(44976005)(87936001)(95666004)(46102001)(77156001)(31966008)(97736001)(83072002)(19580405001)(50986999)(87286001)(74662001)(36756003)(50466002)(74502001)(85306004)(83322001)(76482001)(104166001)(92726001)(88136002)(47776003)(92566001)(89996001)(4396001)(80022001)(20776003)(84676001)(64706001)(99396002)(81342001)(104016003)(48376002)(85852003)(102836001)(77982001)(6806004)(93916002)(105606002)(50226001)(2351001)(21056001)(26826002)(107046002)(81542001)(110136001)(229853001); DIR:OUT; SFP:; SCL:1; SRVR:BY2PR03MB411; H:tx30smr01.am.freescale.net; FPR:; MLV:ovrnspm; PTR:InfoDomainNonexistent; MX:1; LANG:en; MIME-Version: 1.0 X-Microsoft-Antispam: BCL:0;PCL:0;RULEID: X-Forefront-PRVS: 029651C7A1 Received-SPF: Fail (protection.outlook.com: domain of freescale.com does not designate 192.88.168.50 as permitted sender) receiver=protection.outlook.com; client-ip=192.88.168.50; helo=tx30smr01.am.freescale.net; Authentication-Results: spf=fail (sender IP is 192.88.168.50) smtp.mailfrom=junzhu@freescale.com; X-OriginatorOrg: freescale.com Cc: Jun Zhu Subject: [meta-fsl-arm][PATCH] pulseaudio: Fix mutext issue when do pause in gstreamer X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Aug 2014 08:36:55 -0000 Content-Type: text/plain Pulseaudio crashes when other program using sound: Assertion 'pthread_mutex_unlock(&m->mutex) == 0' failed at pulsecore/mutex-posix.c:106, function pa_mutex_unlock(). Disable the feature PTHREAD priority inheritance is the easiest workaround for this issue. Signed-off-by: Jun Zhu --- .../pulseaudio/pulseaudio_5.0.bbappend | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 recipes-multimedia/pulseaudio/pulseaudio_5.0.bbappend diff --git a/recipes-multimedia/pulseaudio/pulseaudio_5.0.bbappend b/recipes-multimedia/pulseaudio/pulseaudio_5.0.bbappend new file mode 100644 index 0000000..091ffc2 --- /dev/null +++ b/recipes-multimedia/pulseaudio/pulseaudio_5.0.bbappend @@ -0,0 +1,2 @@ + +CACHED_CONFIGUREVARS_append_mx6 = " ax_cv_PTHREAD_PRIO_INHERIT=no" -- 1.7.9.5