svn commit: r303118 - head/sys/kern

Conrad E. Meyer cem at FreeBSD.org
Wed Jul 20 22:46:57 UTC 2016


Author: cem
Date: Wed Jul 20 22:46:56 2016
New Revision: 303118
URL: https://svnweb.freebsd.org/changeset/base/303118

Log:
  ANSI-fy imgact_elf.c
  
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/sys/kern/imgact_elf.c

Modified: head/sys/kern/imgact_elf.c
==============================================================================
--- head/sys/kern/imgact_elf.c	Wed Jul 20 22:32:19 2016	(r303117)
+++ head/sys/kern/imgact_elf.c	Wed Jul 20 22:46:56 2016	(r303118)
@@ -1449,9 +1449,7 @@ cb_put_phdr(entry, closure)
  * the number of segments and their total size.
  */
 static void
-cb_size_segment(entry, closure)
-	vm_map_entry_t entry;
-	void *closure;
+cb_size_segment(vm_map_entry_t entry, void *closure)
 {
 	struct sseg_closure *ssc = (struct sseg_closure *)closure;
 
@@ -1465,10 +1463,7 @@ cb_size_segment(entry, closure)
  * caller-supplied data.
  */
 static void
-each_writable_segment(td, func, closure)
-	struct thread *td;
-	segment_callback func;
-	void *closure;
+each_writable_segment(struct thread *td, segment_callback func, void *closure)
 {
 	struct proc *p = td->td_proc;
 	vm_map_t map = &p->p_vmspace->vm_map;


More information about the svn-src-head mailing list