svn commit: r334119 - in head/sys: amd64/amd64 i386/i386

Konstantin Belousov kib at FreeBSD.org
Wed May 23 21:25:50 UTC 2018


Author: kib
Date: Wed May 23 21:25:49 2018
New Revision: 334119
URL: https://svnweb.freebsd.org/changeset/base/334119

Log:
  Style.
  
  Wording and reviewed by:	jhb
  Sponsored by:	The FreeBSD Foundation
  MFC after:	3 days
  Differential revision:	https://reviews.freebsd.org/D15054

Modified:
  head/sys/amd64/amd64/machdep.c
  head/sys/i386/i386/machdep.c

Modified: head/sys/amd64/amd64/machdep.c
==============================================================================
--- head/sys/amd64/amd64/machdep.c	Wed May 23 21:02:14 2018	(r334118)
+++ head/sys/amd64/amd64/machdep.c	Wed May 23 21:25:49 2018	(r334119)
@@ -1985,6 +1985,7 @@ ptrace_single_step(struct thread *td)
 int
 ptrace_clear_single_step(struct thread *td)
 {
+
 	td->td_frame->tf_rflags &= ~PSL_T;
 	return (0);
 }

Modified: head/sys/i386/i386/machdep.c
==============================================================================
--- head/sys/i386/i386/machdep.c	Wed May 23 21:02:14 2018	(r334118)
+++ head/sys/i386/i386/machdep.c	Wed May 23 21:25:49 2018	(r334119)
@@ -2771,6 +2771,7 @@ ptrace_single_step(struct thread *td)
 int
 ptrace_clear_single_step(struct thread *td)
 {
+
 	td->td_frame->tf_eflags &= ~PSL_T;
 	return (0);
 }


More information about the svn-src-head mailing list