From owner-p4-projects@FreeBSD.ORG Sun Oct 15 14:28:45 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 A1D9B16A415; Sun, 15 Oct 2006 14:28:45 +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 615E216A407 for ; Sun, 15 Oct 2006 14:28:45 +0000 (UTC) (envelope-from netchild@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5F0C43D5D for ; Sun, 15 Oct 2006 14:28:44 +0000 (GMT) (envelope-from netchild@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 k9FESi4m082385 for ; Sun, 15 Oct 2006 14:28:44 GMT (envelope-from netchild@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k9FESiaL082382 for perforce@freebsd.org; Sun, 15 Oct 2006 14:28:44 GMT (envelope-from netchild@freebsd.org) Date: Sun, 15 Oct 2006 14:28:44 GMT Message-Id: <200610151428.k9FESiaL082382@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to netchild@freebsd.org using -f From: Alexander Leidinger To: Perforce Change Reviews Cc: Subject: PERFORCE change 107952 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, 15 Oct 2006 14:28:45 -0000 http://perforce.freebsd.org/chv.cgi?CH=107952 Change 107952 by netchild@netchild_magellan on 2006/10/15 14:28:15 style(9) fixes Affected files ... .. //depot/projects/linuxolator/src/sys/amd64/linux32/syscalls.master#6 edit .. //depot/projects/linuxolator/src/sys/conf/files.amd64#4 edit .. //depot/projects/linuxolator/src/sys/kern/kern_fork.c#5 edit Differences ... ==== //depot/projects/linuxolator/src/sys/amd64/linux32/syscalls.master#6 (text+ko) ==== @@ -405,7 +405,7 @@ struct l_timespec *timeout, void *uaddr2, int val3); } 241 AUE_NULL UNIMPL linux_sched_setaffinity 242 AUE_NULL UNIMPL linux_sched_getaffinity -243 AUE_NULL STD { int linux_set_thread_area(struct l_user_desc *desc); } +243 AUE_NULL STD { int linux_set_thread_area(struct l_user_desc *desc); } 244 AUE_NULL UNIMPL linux_get_thread_area 245 AUE_NULL STD { int linux_io_setup(l_uint nr_reqs, linux_aio_context_t *ctxp); } 246 AUE_NULL STD { int linux_io_destroy(linux_aio_context_t ctx); } ==== //depot/projects/linuxolator/src/sys/conf/files.amd64#4 (text+ko) ==== @@ -241,7 +241,7 @@ amd64/linux32/linux32_sysent.c optional compat_linux32 amd64/linux32/linux32_sysvec.c optional compat_linux32 compat/linux/linux_aio.c optional compat_linux32 -compat/linux/linux_emul.c optional compat_linux32 +compat/linux/linux_emul.c optional compat_linux32 compat/linux/linux_file.c optional compat_linux32 compat/linux/linux_futex.c optional compat_linux32 compat/linux/linux_getcwd.c optional compat_linux32 ==== //depot/projects/linuxolator/src/sys/kern/kern_fork.c#5 (text+ko) ==== @@ -527,9 +527,7 @@ sigacts_copy(newsigacts, p1->p_sigacts); p2->p_sigacts = newsigacts; } - /* this flag is used by linuxthreads and is passed - * in via rfork() - */ + /* This flag is used by linuxthreads and is passed in via rfork(). */ if (flags & RFLINUXTHPN) p2->p_sigparent = SIGUSR1; else