]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/conf/param.c
xnu-7195.101.1.tar.gz
[apple/xnu.git] / bsd / conf / param.c
index 6878221776718ee28dac88dccc113a61882a831a..c2e5f75a48ea2d2d162756656232bc07ef21b0bb 100644 (file)
@@ -70,8 +70,6 @@
 #include <sys/socket.h>
 #include <sys/vnode_internal.h>
 #include <sys/file_internal.h>
-#include <sys/callout.h>
-#include <sys/clist.h>
 #include <sys/mbuf.h>
 #include <sys/domain.h>
 #include <sys/kernel.h>
@@ -82,7 +80,7 @@
 
 struct  timezone tz = { .tz_minuteswest = 0, .tz_dsttime = 0 };
 
-#if CONFIG_EMBEDDED
+#if !defined(__x86_64__)
 #define NPROC 1000          /* Account for TOTAL_CORPSES_ALLOWED by making this slightly lower than we can. */
 #define NPROC_PER_UID 950
 #else
@@ -95,8 +93,8 @@ struct  timezone tz = { .tz_minuteswest = 0, .tz_dsttime = 0 };
 int     maxproc = NPROC;
 int     maxprocperuid = NPROC_PER_UID;
 
-#if CONFIG_EMBEDDED
-int hard_maxproc = NPROC;       /* hardcoded limit -- for embedded the number of processes is limited by the ASID space */
+#if !defined(__x86_64__)
+int hard_maxproc = NPROC;       /* hardcoded limit -- for ARM the number of processes is limited by the ASID space */
 #else
 int hard_maxproc = HNPROC;      /* hardcoded limit */
 #endif
@@ -121,14 +119,5 @@ int aio_max_requests = CONFIG_AIO_MAX;
 int aio_max_requests_per_process = CONFIG_AIO_PROCESS_MAX;
 int aio_worker_threads = CONFIG_AIO_THREAD_COUNT;
 
-/*
- * These have to be allocated somewhere; allocating
- * them here forces loader errors if this file is omitted
- * (if they've been externed everywhere else; hah!).
- */
-struct  callout *callout;
-struct  cblock *cfree;
-struct  cblock *cfreelist = NULL;
-int     cfreecount = 0;
 struct  buf *buf_headers;
 struct domains_head domains = TAILQ_HEAD_INITIALIZER(domains);