From owner-freebsd-current@FreeBSD.ORG Sat Jun 16 21:54:58 2007 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 34FAA16A41F; Sat, 16 Jun 2007 21:54:58 +0000 (UTC) (envelope-from rodrigc@c-71-192-57-29.hsd1.ma.comcast.net) Received: from alnrmhc14.comcast.net (alnrmhc14.comcast.net [206.18.177.54]) by mx1.freebsd.org (Postfix) with ESMTP id E424313C45A; Sat, 16 Jun 2007 21:54:57 +0000 (UTC) (envelope-from rodrigc@c-71-192-57-29.hsd1.ma.comcast.net) Received: from c-71-192-57-29.hsd1.ma.comcast.net ([71.192.57.29]) by comcast.net (alnrmhc14) with ESMTP id <20070616215457b14001j3dae>; Sat, 16 Jun 2007 21:54:57 +0000 Received: from c-71-192-57-29.hsd1.ma.comcast.net (localhost.crodrigues.org [127.0.0.1]) by c-71-192-57-29.hsd1.ma.comcast.net (8.14.1/8.14.1) with ESMTP id l5GLt6vZ089351; Sat, 16 Jun 2007 17:55:06 -0400 (EDT) (envelope-from rodrigc@c-71-192-57-29.hsd1.ma.comcast.net) Received: (from rodrigc@localhost) by c-71-192-57-29.hsd1.ma.comcast.net (8.14.1/8.14.1/Submit) id l5GLt67o089350; Sat, 16 Jun 2007 17:55:06 -0400 (EDT) (envelope-from rodrigc) Date: Sat, 16 Jun 2007 17:55:06 -0400 From: Craig Rodrigues To: Steve Kargl Message-ID: <20070616215506.GA87160@crodrigues.org> References: <20070616203624.GA37899@crodrigues.org> <20070616205434.GA26966@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070616205434.GA26966@troutmask.apl.washington.edu> User-Agent: Mutt/1.4.2.2i Cc: deischen@freebsd.org, freebsd-current@freebsd.org, davidxu@freebsd.org Subject: Re: Undefined symbol timer_delete()? 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, 16 Jun 2007 21:54:58 -0000 On Sat, Jun 16, 2007 at 01:54:34PM -0700, Steve Kargl wrote: > mobile:kargl[205] cc -o z j.c -lrt > > It appears that the manpage is wrong > > LIBRARY > Standard C Library (libc, -lc) Thanks, yes the man page is wrong, timer_delete() and friends are in librt not in libc. It looks like similarly the man pages for mq_open() and friends are wrong, because mq_* exist in librt, not in libc. Do the aio_* functions in this library augment or replace those in libc? Revision 1.1: download - view: text, markup, annotated - select for diffs Wed Mar 1 06:37:34 2006 UTC (15 months, 2 weeks ago) by davidxu Branches: MAIN Bring in my initial version of POSIX realtime extension library. Current the library implements mqueue, timer and aio with SIGEV_THREAD notification supported. -- Craig Rodrigues rodrigc@crodrigues.org