From owner-freebsd-hackers@FreeBSD.ORG Fri Nov 7 12:02:32 2003 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7FD816A4CE for ; Fri, 7 Nov 2003 12:02:32 -0800 (PST) Received: from falcon.mail.pas.earthlink.net (falcon.mail.pas.earthlink.net [207.217.120.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5150D43F85 for ; Fri, 7 Nov 2003 12:02:30 -0800 (PST) (envelope-from jtoung@arc.nasa.gov) Received: from h-68-164-88-108.snvacaid.dynamic.covad.net ([68.164.88.108] helo=there) by falcon.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 1AICoP-0007J8-00 for hackers@freebsd.org; Fri, 07 Nov 2003 12:02:29 -0800 Content-Type: text/plain; charset="us-ascii" From: Jerry Toung To: hackers Date: Fri, 7 Nov 2003 12:02:50 -0800 User-Agent: KMail/1.4.3 Organization: ARC MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200311071202.50770.jtoung@arc.nasa.gov> Subject: sending messages, user process <--> kernel module X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 20:02:33 -0000 Hello, I am trying to do asynchronous send/receive between a user process that I= am=20 writing and a kernel module that I am also writing. I thought about implementing something similar to unix routing socket, bu= t I=20 will have to define a new domain and protosw. Beside that idea, what else would you suggest? Thank you, Jerry.