From owner-svn-src-all@freebsd.org Wed Feb 8 17:45:25 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56720CD6FE9; Wed, 8 Feb 2017 17:45:25 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2612E766; Wed, 8 Feb 2017 17:45:25 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v18HjOZc080927; Wed, 8 Feb 2017 17:45:24 GMT (envelope-from jhb@FreeBSD.org) Received: (from jhb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v18HjOAW080925; Wed, 8 Feb 2017 17:45:24 GMT (envelope-from jhb@FreeBSD.org) Message-Id: <201702081745.v18HjOAW080925@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhb set sender to jhb@FreeBSD.org using -f From: John Baldwin Date: Wed, 8 Feb 2017 17:45:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r313449 - in head: sys/sys usr.bin/gcore X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Feb 2017 17:45:25 -0000 Author: jhb Date: Wed Feb 8 17:45:23 2017 New Revision: 313449 URL: https://svnweb.freebsd.org/changeset/base/313449 Log: Trim trailing whitespace (mostly introduced in r313407). Sponsored by: DARPA / AFRL Modified: head/sys/sys/proc.h head/usr.bin/gcore/elfcore.c Modified: head/sys/sys/proc.h ============================================================================== --- head/sys/sys/proc.h Wed Feb 8 17:03:52 2017 (r313448) +++ head/sys/sys/proc.h Wed Feb 8 17:45:23 2017 (r313449) @@ -315,7 +315,7 @@ struct thread { } td_state; /* (t) thread state */ union { register_t tdu_retval[2]; - off_t tdu_off; + off_t tdu_off; } td_uretoff; /* (k) Syscall aux returns. */ #define td_retval td_uretoff.tdu_retval u_int td_cowgen; /* (k) Generation of COW pointers. */ @@ -619,7 +619,7 @@ struct proc { u_int p_xsig; /* (c) Stop/kill sig. */ uint16_t p_elf_machine; /* (x) ELF machine type */ uint64_t p_elf_flags; /* (x) ELF flags */ - + /* End area that is copied on creation. */ #define p_endcopy p_elf_flags struct pgrp *p_pgrp; /* (c + e) Pointer to process group. */ Modified: head/usr.bin/gcore/elfcore.c ============================================================================== --- head/usr.bin/gcore/elfcore.c Wed Feb 8 17:03:52 2017 (r313448) +++ head/usr.bin/gcore/elfcore.c Wed Feb 8 17:45:23 2017 (r313449) @@ -434,7 +434,7 @@ elf_puthdr(int efd, pid_t pid, vm_map_en err(1, "Failed to re-read ELF header"); else if (cnt != sizeof(binhdr)) errx(1, "Failed to re-read ELF header"); - + ehdr = (Elf_Ehdr *)hdr; ehdr->e_ident[EI_MAG0] = ELFMAG0;