From owner-p4-projects@FreeBSD.ORG Thu Apr 15 10:14:08 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 729E516A4D1; Thu, 15 Apr 2004 10:14:08 -0700 (PDT) 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 4CA4216A4CF for ; Thu, 15 Apr 2004 10:14:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E0F743D49 for ; Thu, 15 Apr 2004 10:14:08 -0700 (PDT) (envelope-from areisse@nailabs.com) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FHE8Ge046728 for ; Thu, 15 Apr 2004 10:14:08 -0700 (PDT) (envelope-from areisse@nailabs.com) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FHE7nA046725 for perforce@freebsd.org; Thu, 15 Apr 2004 10:14:07 -0700 (PDT) (envelope-from areisse@nailabs.com) Date: Thu, 15 Apr 2004 10:14:07 -0700 (PDT) Message-Id: <200404151714.i3FHE7nA046725@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to areisse@nailabs.com using -f From: Andrew Reisse To: Perforce Change Reviews Subject: PERFORCE change 51113 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 17:14:09 -0000 http://perforce.freebsd.org/chv.cgi?CH=51113 Change 51113 by areisse@areisse_ibook on 2004/04/15 10:13:46 Fix some minor errors. Affected files ... .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/bsd/kern/init_sysent.c#3 edit .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/bsd/kern/kern_malloc.c#3 edit .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/bsd/kern/subr_sbuf.c#2 edit .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/bsd/sys/malloc.h#3 edit .. //depot/projects/trustedbsd/sedarwin73/apsl/xnu/osfmk/mach/message.h#3 edit Differences ... ==== //depot/projects/trustedbsd/sedarwin73/apsl/xnu/bsd/kern/init_sysent.c#3 (text+ko) ==== @@ -856,7 +856,7 @@ #endif syss(nosys,0), /* 347 */ syss(nosys,0), /* 348 */ - syss(nosys,0) /* 349 */ + syss(nosys,0), /* 349 */ syss(audit,2), /* 350 */ syss(auditon,3), /* 351 */ @@ -877,7 +877,7 @@ syss(nosys,0), /* 366 */ syss(nosys,0), /* 367 */ syss(nosys,0), /* 368 */ - syss(nosys,0) /* 369 */ + syss(nosys,0), /* 369 */ syss(extattrctl,5), /* 370 */ syss(extattr_set_file,5), /* 371 */ ==== //depot/projects/trustedbsd/sedarwin73/apsl/xnu/bsd/kern/kern_malloc.c#3 (text+ko) ==== @@ -218,6 +218,10 @@ SOS(transaction), KMZ_CREATEZONE, /* 92 M_JNL_TR */ SOS(specinfo), KMZ_CREATEZONE, /* 93 M_SPECINFO */ SOS(kqueue), KMZ_CREATEZONE, /* 94 M_KQUEUE */ + 0, KMZ_MALLOC, /* 95 M_MACPIPELABEL */ + 0, KMZ_MALLOC, /* 96 M_MACTEMP */ + 0, KMZ_MALLOC, /* 97 M_SBUF */ + 0, KMZ_MALLOC, /* 98 M_HFS_EXTATTR */ #undef SOS #undef SOX }; ==== //depot/projects/trustedbsd/sedarwin73/apsl/xnu/bsd/kern/subr_sbuf.c#2 (text+ko) ==== @@ -479,6 +479,11 @@ return (0); } +static inline int isspace(ch) +{ + return (ch == ' ' || ch == '\n' || ch == '\t'); +} + /* * Trim whitespace characters from end of an sbuf. */ ==== //depot/projects/trustedbsd/sedarwin73/apsl/xnu/bsd/sys/malloc.h#3 (text+ko) ==== @@ -275,7 +275,7 @@ "Journal", /* 91 M_JNL_JNL */\ "Transaction", /* 92 M_JNL_TR */\ "specinfo", /* 93 M_SPECINFO */\ - "kqueue" /* 94 M_KQUEUE */\ + "kqueue", /* 94 M_KQUEUE */ \ "macpipelabel", /* 95 M_MACPIPELABEL */\ "mactemp", /* 96 M_MACTEMP */\ "sbuf", /* 97 M_SBUF */\ ==== //depot/projects/trustedbsd/sedarwin73/apsl/xnu/osfmk/mach/message.h#3 (text+ko) ==== @@ -331,6 +331,7 @@ mach_msg_trailer_size_t msgh_trailer_size; mach_port_seqno_t msgh_seqno; security_token_t msgh_sender; + audit_token_t msgh_audit; msg_labels_t msgh_labels; } mach_msg_mac_trailer_t;