[867] in arla-drinkers
Re: patch for xfs/linux/getcwd.c
daemon@ATHENA.MIT.EDU (assar@stacken.kth.se)
Mon Jun 7 18:02:46 1999
From owner-arla-drinkers@stacken.kth.se Mon Jun 07 22:02:45 1999
Return-Path: <owner-arla-drinkers@stacken.kth.se>
Delivered-To: arla-drinkers-mtg@bloom-picayune.mit.edu
Received: (qmail 22520 invoked from network); 7 Jun 1999 22:02:44 -0000
Received: from unknown (HELO sundance.stacken.kth.se) (130.237.234.41)
by bloom-picayune.mit.edu with SMTP; 7 Jun 1999 22:02:44 -0000
Received: (from majordom@localhost)
by sundance.stacken.kth.se (8.8.8/8.8.8) id XAA05659
for arla-drinkers-list; Mon, 7 Jun 1999 23:56:19 +0200 (MET DST)
Received: from dhcp162.conference.usenix.org (dhcp162.conference.usenix.org [209.179.127.162])
by sundance.stacken.kth.se (8.8.8/8.8.8) with ESMTP id XAA05655
for <arla-drinkers@stacken.kth.se>; Mon, 7 Jun 1999 23:56:14 +0200 (MET DST)
Received: (from assar@localhost) by dhcp162.conference.usenix.org (8.9.3/8.7.3) id XAA01025; Mon, 7 Jun 1999 23:56:19 +0200 (CEST)
From: assar@stacken.kth.se
To: Derrick J Brashear <shadow@dementia.org>
Cc: arla-drinkers@stacken.kth.se
Subject: Re: patch for xfs/linux/getcwd.c
References: <Pine.LNX.3.96L.990607004228.863D-100000@jooky.trafford.dementia.org>
Mime-Version: 1.0 (generated by tm-edit 7.68)
Content-Type: multipart/mixed;
boundary="Multipart_Mon_Jun__7_23:56:19_1999-1"
Content-Transfer-Encoding: 7bit
Date: 07 Jun 1999 23:56:19 +0200
In-Reply-To: Derrick J Brashear's message of "Mon, 7 Jun 1999 00:44:14 -0400 (EDT)"
Message-ID: <5l1zfny8sc.fsf@dhcp162.conference.usenix.org>
Lines: 37
X-Mailer: Gnus v5.5/Emacs 19.34
Sender: owner-arla-drinkers@stacken.kth.se
Precedence: bulk
--Multipart_Mon_Jun__7_23:56:19_1999-1
Content-Type: text/plain; charset=US-ASCII
Derrick J Brashear <shadow@dementia.org> writes:
> Because it's an inline'd function in asm-sparc/semaphore.h, not a macro.
But shouldn't that just work as well? Why doesn't egrep find it?
> Of course, I see it is in asm-i386/semaphore.h as well. So... if using
> egrep already, why not just egrep in asm/semaphore.h directly, instead of
> preprocessing?
Doesn't it egrep in asm/semaphore.h?
/assar
--Multipart_Mon_Jun__7_23:56:19_1999-1
Content-Type: text/plain; charset=US-ASCII
dnl
dnl $Id: linux-func-init-mutex.m4,v 1.1 1999/05/16 02:42:52 assar Exp $
dnl
AC_DEFUN(AC_LINUX_FUNC_INIT_MUTEX, [
AC_CACHE_CHECK([for init_MUTEX],
ac_cv_func_init_mutex, [
AC_EGREP_HEADER([init_MUTEX],
[asm/semaphore.h],
ac_cv_func_init_mutex=yes,
ac_cv_func_init_mutex=no)])
if test "$ac_cv_func_init_mutex" = "yes"; then
AC_DEFINE(HAVE_INIT_MUTEX, 1,
[define if you have a function init_MUTEX])
fi
])
--Multipart_Mon_Jun__7_23:56:19_1999-1--