From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26040 invoked by alias); 2 Dec 2012 01:20:58 -0000 Received: (qmail 26028 invoked by uid 22791); 2 Dec 2012 01:20:57 -0000 X-SWARE-Spam-Status: No, hits=-2.1 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_SPAMHAUS_DROP,RCVD_IN_DNSWL_LOW X-Spam-Check-By: sourceware.org Received: from youngberry.canonical.com (HELO youngberry.canonical.com) (91.189.89.112) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 02 Dec 2012 01:20:48 +0000 Received: from dslb-088-073-096-115.pools.arcor-ip.net ([88.73.96.115] helo=[192.168.42.216]) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1TeyEh-0001Lp-85 for java-patches@gcc.gnu.org; Sun, 02 Dec 2012 01:20:47 +0000 Message-ID: <50BAACE7.8060705@ubuntu.com> Date: Sun, 02 Dec 2012 01:20:00 -0000 From: Matthias Klose User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: GCJ-patches Subject: [patch][boehm-gc update] update to new GC_[gs]et_free_space_divisor API Content-Type: multipart/mixed; boundary="------------030708090104080000090806" X-IsSubscribed: yes Mailing-List: contact java-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: java-patches-owner@gcc.gnu.org X-SW-Source: 2012-q4/txt/msg00043.txt.bz2 This is a multi-part message in MIME format. --------------030708090104080000090806 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Content-length: 104 Update to the new GC_[gs]et_free_space_divisor API Committed to the boehm-gc merge branch, Matthias --------------030708090104080000090806 Content-Type: text/x-diff; name="boehm.cc.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="boehm.cc.diff" Content-length: 508 libjava/ChangeLog.merge 2012-12-01 Matthias Klose * boehm.cc (_Jv_SetGCFreeSpaceDivisor): Update to new boehm-gc API. Index: boehm.cc =================================================================== --- boehm.cc (Revision 194043) +++ boehm.cc (Arbeitskopie) @@ -468,7 +468,8 @@ int _Jv_SetGCFreeSpaceDivisor (int div) { - return (int)GC_set_free_space_divisor ((GC_word)div); + GC_set_free_space_divisor ((GC_word)div); + return (int)GC_get_free_space_divisor (); } void --------------030708090104080000090806--