PERFORCE change 51113 for review
Andrew Reisse
areisse at FreeBSD.org
Thu Apr 15 17:14:07 GMT 2004
http://perforce.freebsd.org/chv.cgi?CH=51113
Change 51113 by areisse at 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;
To Unsubscribe: send mail to majordomo at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message
More information about the trustedbsd-cvs
mailing list