--- Gnu-Mach/kern/task.c 2020/09/02 04:49:56 1.1.1.5 +++ Gnu-Mach/kern/task.c 2020/09/02 04:52:02 1.1.1.6 @@ -63,7 +63,7 @@ ipc_port_t new_task_notification = NULL; void task_init(void) { kmem_cache_init(&task_cache, "task", sizeof(struct task), 0, - NULL, NULL, NULL, 0); + NULL, 0); eml_init(); machine_task_module_init (); @@ -565,7 +565,7 @@ kern_return_t task_threads( unsigned int actual; /* this many threads */ thread_t thread; thread_t *threads; - int i; + unsigned i; vm_size_t size, size_needed; vm_offset_t addr;