From owner-cvs-src@FreeBSD.ORG Thu May 5 21:05:40 2005 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B67616A4CE; Thu, 5 May 2005 21:05:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5144343DB5; Thu, 5 May 2005 21:05:40 +0000 (GMT) (envelope-from glebius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j45L5cJl088671; Thu, 5 May 2005 21:05:38 GMT (envelope-from glebius@repoman.freebsd.org) Received: (from glebius@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j45L5coG088670; Thu, 5 May 2005 21:05:38 GMT (envelope-from glebius) Message-Id: <200505052105.j45L5coG088670@repoman.freebsd.org> From: Gleb Smirnoff Date: Thu, 5 May 2005 21:05:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet/libalias alias_db.c alias_local.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 May 2005 21:05:40 -0000 glebius 2005-05-05 21:05:38 UTC FreeBSD src repository Modified files: sys/netinet/libalias alias_db.c alias_local.h Log: Things required to build libalias as kernel module: - kernel module declarations and handler. - macros to map malloc(3) calls to malloc(9) ones. - malloc(9) declarations. - call finishoff() from module handler MOD_UNLOAD case instead of atexit(3). - use panic(9) instead of abort(3) - take time from time_second instead of gettimeofday(2) - define INADDR_NONE Revision Changes Path 1.66 +61 -0 src/sys/netinet/libalias/alias_db.c 1.31 +13 -0 src/sys/netinet/libalias/alias_local.h