From owner-p4-projects@FreeBSD.ORG Tue Jul 25 11:31:49 2006 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id B5B1316A4E2; Tue, 25 Jul 2006 11:31:49 +0000 (UTC) X-Original-To: perforce@FreeBSD.org Delivered-To: perforce@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9481716A4DF for ; Tue, 25 Jul 2006 11:31:49 +0000 (UTC) (envelope-from rdivacky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57AC843D76 for ; Tue, 25 Jul 2006 11:31:49 +0000 (GMT) (envelope-from rdivacky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6PBVnSM040675 for ; Tue, 25 Jul 2006 11:31:49 GMT (envelope-from rdivacky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6PBVn3H040672 for perforce@freebsd.org; Tue, 25 Jul 2006 11:31:49 GMT (envelope-from rdivacky@FreeBSD.org) Date: Tue, 25 Jul 2006 11:31:49 GMT Message-Id: <200607251131.k6PBVn3H040672@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to rdivacky@FreeBSD.org using -f From: Roman Divacky To: Perforce Change Reviews Cc: Subject: PERFORCE change 102366 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jul 2006 11:31:50 -0000 http://perforce.freebsd.org/chv.cgi?CH=102366 Change 102366 by rdivacky@rdivacky_witten on 2006/07/25 11:31:10 Add prototypes for mq_* functions. Affected files ... .. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/syscalls.master#16 edit Differences ... ==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/syscalls.master#16 (text+ko) ==== @@ -448,12 +448,18 @@ 274 AUE_NULL MSTD { int linux_mbind(void); } 275 AUE_NULL MSTD { int linux_get_mempolicy(void); } 276 AUE_NULL MSTD { int linux_set_mempolicy(void); } -277 AUE_NULL MSTD { int linux_mq_open(void); } -278 AUE_NULL MSTD { int linux_mq_unlink(void); } -279 AUE_NULL MSTD { int linux_mq_timedsend(void); } -280 AUE_NULL MSTD { int linux_mq_timedreceive(void); } -281 AUE_NULL MSTD { int linux_mq_notify(void); } -282 AUE_NULL MSTD { int linux_mq_getsetattr(void); } +277 AUE_NULL MSTD { int linux_mq_open(const char *name, int oflag, mode_t mode, \ + struct mq_attr *attr); } +278 AUE_NULL MSTD { int linux_mq_unlink(const char *name); } +279 AUE_NULL MSTD { int linux_mq_timedsend(l_mqd_t mqd, const char *msg_ptr, \ + size_t msg_len, unsigned int msg_prio, const struct \ + timespec *abs_timeout); } +280 AUE_NULL MSTD { int linux_mq_timedreceive(l_mqd_t mqd, char *msg_ptr, \ + size_t msg_len, unsigned int msg_prio, const struct \ + timespec *abs_timeout); } +281 AUE_NULL MSTD { int linux_mq_notify(l_mqd_t mqd, const struct timespec *abs_timeout); } +282 AUE_NULL MSTD { int linux_mq_getsetattr(l_mqd_t mqd, const struct mq_attr *attr, \ + struct mq_attr *oattr); } 283 AUE_NULL MSTD { int linux_kexec_load(void); } 284 AUE_NULL MSTD { int linux_waitid(void); } 285 AUE_NULL UNIMPL