Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 18 Aug 2010 07:26:52 GMT
From:      Ilya Bakulin <kibab@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 182552 for review
Message-ID:  <201008180726.o7I7QqiO021823@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@182552?ac=10

Change 182552 by kibab@kibab_kibab-nb on 2010/08/18 07:26:39

	- PAE feature.

Affected files ...

.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/kern_malloc.c#4 edit
.. //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/ksched.c#4 edit

Differences ...

==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/kern_malloc.c#4 (text+ko) ====

@@ -93,6 +93,10 @@
 dtrace_malloc_probe_func_t	dtrace_malloc_probe;
 #endif
 
+#ifdef PAE
+FEATURE(pae, "Physical Address Extensions support");
+#endif
+
 /*
  * When realloc() is called, if the new size is sufficiently smaller than
  * the old size, realloc() will allocate a new, smaller block to avoid

==== //depot/projects/soc2010/kibab_sysctlreg/src_sys/kern/ksched.c#4 (text+ko) ====

@@ -42,13 +42,14 @@
 #include <sys/systm.h>
 #include <sys/lock.h>
 #include <sys/sysctl.h>
+#include <sys/kernel.h>
 #include <sys/mutex.h>
 #include <sys/proc.h>
 #include <sys/posix4.h>
 #include <sys/resource.h>
 #include <sys/sched.h>
 
-//FEATURE(kposix_priority_scheduling, "POSIX P1003.1B realtime extensions");
+FEATURE(kposix_priority_scheduling, "POSIX P1003.1B realtime extensions");
 
 /* ksched: Real-time extension to support POSIX priority scheduling.
  */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008180726.o7I7QqiO021823>