From owner-freebsd-current@FreeBSD.ORG Sat Feb 14 03:45:55 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BDED51065677 for ; Sat, 14 Feb 2009 03:45:55 +0000 (UTC) (envelope-from joseph.koshy@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.172]) by mx1.freebsd.org (Postfix) with ESMTP id 9174B8FC19 for ; Sat, 14 Feb 2009 03:45:55 +0000 (UTC) (envelope-from joseph.koshy@gmail.com) Received: by wf-out-1314.google.com with SMTP id 27so1499188wfd.7 for ; Fri, 13 Feb 2009 19:45:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=wON1IlmnV0/14NKrIUL/XYVnD7detTIxCzZrtECmQVo=; b=amJ5pifAm+7TlDLKO2GH0iqv1vMFjGeg4mKvYQuVFN3K3UgGs/qhSTjrkg+4PCzuuH dG+TAM7MUlY5GV5MtAKgH3zorEthkgroBk3o02CUCp2Mf+4v/nyzW7EvQfzCB6V2ljuf 6GT1plsf8DbeJiD4GglMuXeRXZQVyT+yuJL7g= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=f4sRqVFbQ5ZQFn5hpihp0BsjY/eHMBatj64JLAAO1jlnsiO5LfDWjJRxDDiEW5aRoz mKKV+DO3a8MtmuEcA7aTH2AjKnTrq2YRKMVS7buDEunt/x6PN6K1pJ/MFmbkEGwDW4Fx GQchAbR3Q/mk5E4XXIkmDBmZbr1xnaAKafMPc= MIME-Version: 1.0 Received: by 10.142.225.11 with SMTP id x11mr1225854wfg.322.1234583155108; Fri, 13 Feb 2009 19:45:55 -0800 (PST) In-Reply-To: <20090213231513.GA20223@duncan.reilly.home> References: <4995BB1B.7060201@icyb.net.ua> <20090213231513.GA20223@duncan.reilly.home> Date: Sat, 14 Feb 2009 09:15:55 +0530 Message-ID: <84dead720902131945s11fc5949j7125bb28b030f055@mail.gmail.com> From: Joseph Koshy To: Andrew Reilly Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org, Andriy Gapon Subject: Re: weeding out c++ keywords from sys/sys 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: Sat, 14 Feb 2009 03:45:56 -0000 > Not that this should stop you from de-keywording the include > files, if that takes your fancy, but permuting a variable > "class" into "clazz" is a bit gruesome, imo. Why not just comment > the argument name out altogether? It's not strictly needed in > the prototype. Prefixing parameter names in function prototypes with an underscore should be enough. void function(int _fd); (Example taken from style(9)). Koshy