From owner-freebsd-current@FreeBSD.ORG Wed May 16 10:18:57 2007 Return-Path: X-Original-To: freebsd-current@FreeBSD.org Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DAE7C16A400; Wed, 16 May 2007 10:18:57 +0000 (UTC) (envelope-from krassi@bulinfo.net) Received: from mx.bulinfo.net (mx.bulinfo.net [193.194.156.1]) by mx1.freebsd.org (Postfix) with ESMTP id 8C4E613C447; Wed, 16 May 2007 10:18:57 +0000 (UTC) (envelope-from krassi@bulinfo.net) Received: from localhost (localhost [127.0.0.1]) by mx.bulinfo.net (Postfix) with ESMTP id 3703E35CCE; Wed, 16 May 2007 13:18:55 +0300 (EEST) Received: from mx.bulinfo.net ([127.0.0.1]) by localhost (mx.bulinfo.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15395-06; Wed, 16 May 2007 13:18:52 +0300 (EEST) Received: from [192.168.2.188] (pythia.bulinfo.net [212.72.195.5]) by mx.bulinfo.net (Postfix) with ESMTP id EA40935CCD; Wed, 16 May 2007 13:18:51 +0300 (EEST) Message-ID: <464ADA8B.5020408@bulinfo.net> Date: Wed, 16 May 2007 13:18:51 +0300 From: Krassimir Slavchev User-Agent: Thunderbird 1.5 (X11/20060201) MIME-Version: 1.0 To: =?UTF-8?B?RGFnLUVybGluZyBTbcO4cmdyYXY=?= References: <4649A81A.60609@bulinfo.net> <4649B5FB.2060808@bulinfo.net> <20070515105611.00747584.rnsanchez@wait4.org> <464A008E.5040508@FreeBSD.org> <86k5v9gna2.fsf@dwp.des.no> In-Reply-To: <86k5v9gna2.fsf@dwp.des.no> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: amavisd-new at mx.bulinfo.net Cc: Mark Peek , freebsd-current@FreeBSD.org, Hajimu UMEMOTO Subject: Re: csh on arm failure? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 May 2007 10:18:57 -0000 Dag-Erling Smørgrav wrote: > Hajimu UMEMOTO writes: > >> We are not using the system malloc, actually. SYSMALLOC is undefined >> in config_f.h, and config_f.h is included after config_p.h in >> config.h. >> > > --- contrib/tcsh/config_f.h 11 Mar 2007 22:33:39 -0000 1.1.1.6 > +++ contrib/tcsh/config_f.h 16 May 2007 08:55:10 -0000 > @@ -143,7 +143,7 @@ > * This can be much slower and no memory statistics will be > * provided. > */ > -#if defined(__MACHTEN__) || defined(PURIFY) || defined(MALLOC_TRACE) || defined(_OSD_POSIX) || defined(__MVS__) || defined (__linux__) > +#if defined(__MACHTEN__) || defined(PURIFY) || defined(MALLOC_TRACE) || defined(_OSD_POSIX) || defined(__MVS__) || defined(__linux__) || defined(__FreeBSD__) > # define SYSMALLOC > #else > # undef SYSMALLOC > > DES > With system's malloc() it works on arm arch! Thanks