From owner-svn-src-head@FreeBSD.ORG Wed Nov 9 13:26:59 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5EB3B106564A; Wed, 9 Nov 2011 13:26:59 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4F62C8FC0C; Wed, 9 Nov 2011 13:26:59 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id pA9DQxDD084416; Wed, 9 Nov 2011 13:26:59 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id pA9DQxNT084414; Wed, 9 Nov 2011 13:26:59 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <201111091326.pA9DQxNT084414@svn.freebsd.org> From: Ed Schouten Date: Wed, 9 Nov 2011 13:26:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r227385 - head/sys/tools X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Nov 2011 13:26:59 -0000 Author: ed Date: Wed Nov 9 13:26:59 2011 New Revision: 227385 URL: http://svn.freebsd.org/changeset/base/227385 Log: Restore the comment that I removed by accident. The comment still applies to this block of code. Modified: head/sys/tools/makeobjops.awk Modified: head/sys/tools/makeobjops.awk ============================================================================== --- head/sys/tools/makeobjops.awk Wed Nov 9 11:00:29 2011 (r227384) +++ head/sys/tools/makeobjops.awk Wed Nov 9 13:26:59 2011 (r227385) @@ -306,6 +306,7 @@ function handle_method (static, doc) printh(format_line(prototype argument_list ");", line_width, length(prototype))); + # Print out the method desc printc("struct kobjop_desc " mname "_desc = {"); printc("\t0, { &" mname "_desc, (kobjop_t)" default_function " }"); printc("};\n");