From owner-cvs-sys Tue Sep 19 23:28:44 1995 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id XAA20777 for cvs-sys-outgoing; Tue, 19 Sep 1995 23:28:44 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id XAA20764 ; Tue, 19 Sep 1995 23:28:15 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id QAA14135; Wed, 20 Sep 1995 16:23:09 +1000 Date: Wed, 20 Sep 1995 16:23:09 +1000 From: Bruce Evans Message-Id: <199509200623.QAA14135@godzilla.zeta.org.au> To: bde@freefall.freebsd.org, rgrimes@gndrsh.aac.dev.com Subject: Re: cvs commit: src/sys/sys sysent.h Cc: CVS-commiters@freefall.freebsd.org, cvs-sys@freefall.freebsd.org Sender: owner-cvs-sys@FreeBSD.org Precedence: bulk >> Modified: sys/kern Makefile makesyscalls.sh syscalls.master >> sys/sys sysent.h >> Log: >> Generate prototypes for syscall-implementing functions. Put them in >> and use them (so far only) in kern/init_sysent.c. >> >> Don't put $Id in generated files. >Please revert that part, some of these generated files get checked into >cvs, and anything in the kernel checked in should have a $Id$ in it. These files never had their own $Id$. cvs clobbered the $Id$ that was copied from the source file, breaking the cross reference to the source file. I don't like putting generated files in cvs at all, but at least is used for building the library as well as for building kernels. Perhaps everything should be generated at build time. We already generate numerous copies of vnode_if.[ch]. Bruce