Date: Mon, 30 Sep 2002 10:01:35 -0400 From: Craig Rodrigues <rodrigc@attbi.com> To: freebsd-standards@freebsd.org Subject: Re: Status of P1003_1B kernel config option? Message-ID: <20020930100135.A16436@attbi.com> In-Reply-To: <20020930022511.A47626@espresso.q9media.com>; from mike@FreeBSD.org on Mon, Sep 30, 2002 at 02:25:11AM -0400 References: <20020930001641.A14796@attbi.com> <20020930022511.A47626@espresso.q9media.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, Sep 30, 2002 at 02:25:11AM -0400, Mike Barcroft wrote: > > Does the implementation of POSIX message queues in > > /usr/src/sys/posix4/mqueue.h work in -CURRENT? > > Anything with a header and function prototypes should be considered > working. If not, a problem report would be appropriate. OK, I wasn't sure of the status of <mqueue.h> because at least on my system, there does not seem to be any man pages for mq_open(), mq_close(), etc. Also, what library needs to be linked in when using POSIX message queues? If I compile the following simple program, I get undefined errors at link time: #include <sys/types.h> #include <mqueue.h> int main(int argc, char *argv[]) { mqd_t a; mq_close(a); } -- Craig Rodrigues http://www.gis.net/~craigr rodrigc@attbi.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-standards" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020930100135.A16436>