From owner-p4-projects@FreeBSD.ORG Sun Aug 13 11:42:48 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 97C8116A567; Sun, 13 Aug 2006 11:42:48 +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 5DBFC16A565 for ; Sun, 13 Aug 2006 11:42:48 +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 E496A43D49 for ; Sun, 13 Aug 2006 11:42:47 +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 k7DBgljU003971 for ; Sun, 13 Aug 2006 11:42:47 GMT (envelope-from rdivacky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k7DBglZY003967 for perforce@freebsd.org; Sun, 13 Aug 2006 11:42:47 GMT (envelope-from rdivacky@FreeBSD.org) Date: Sun, 13 Aug 2006 11:42:47 GMT Message-Id: <200608131142.k7DBglZY003967@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 103751 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: Sun, 13 Aug 2006 11:42:48 -0000 http://perforce.freebsd.org/chv.cgi?CH=103751 Change 103751 by rdivacky@rdivacky_witten on 2006/08/13 11:42:06 Regen after syscalls.master update. Affected files ... .. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_proto.h#22 edit .. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_syscall.h#22 edit .. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_sysent.c#22 edit Differences ... ==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_proto.h#22 (text+ko) ==== @@ -765,21 +765,21 @@ }; struct linux_clock_settime_args { char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)]; - char tp_l_[PADL_(struct linux_timespec *)]; struct linux_timespec * tp; char tp_r_[PADR_(struct linux_timespec *)]; + char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)]; }; struct linux_clock_gettime_args { char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)]; - char tp_l_[PADL_(struct linux_timespec *)]; struct linux_timespec * tp; char tp_r_[PADR_(struct linux_timespec *)]; + char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)]; }; struct linux_clock_getres_args { char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)]; - char tp_l_[PADL_(struct linux_timespec *)]; struct linux_timespec * tp; char tp_r_[PADR_(struct linux_timespec *)]; + char tp_l_[PADL_(struct l_timespec *)]; struct l_timespec * tp; char tp_r_[PADR_(struct l_timespec *)]; }; struct linux_clock_nanosleep_args { char which_l_[PADL_(clockid_t)]; clockid_t which; char which_r_[PADR_(clockid_t)]; char flags_l_[PADL_(int)]; int flags; char flags_r_[PADR_(int)]; - char rqtp_l_[PADL_(struct linux_timespec *)]; struct linux_timespec * rqtp; char rqtp_r_[PADR_(struct linux_timespec *)]; - char rmtp_l_[PADL_(struct linux_timespec *)]; struct linux_timespec * rmtp; char rmtp_r_[PADR_(struct linux_timespec *)]; + char rqtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rqtp; char rqtp_r_[PADR_(struct l_timespec *)]; + char rmtp_l_[PADL_(struct l_timespec *)]; struct l_timespec * rmtp; char rmtp_r_[PADR_(struct l_timespec *)]; }; struct linux_statfs64_args { register_t dummy; ==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_syscall.h#22 (text+ko) ==== ==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_sysent.c#22 (text+ko) ====