svn commit: r303790 - stable/10/sys/kern

Konstantin Belousov kib at FreeBSD.org
Sat Aug 6 08:23:37 UTC 2016


Author: kib
Date: Sat Aug  6 08:23:36 2016
New Revision: 303790
URL: https://svnweb.freebsd.org/changeset/base/303790

Log:
  MFC r303702:
  Remove mention of Giant from the fork_return() description.

Modified:
  stable/10/sys/kern/kern_fork.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/kern/kern_fork.c
==============================================================================
--- stable/10/sys/kern/kern_fork.c	Sat Aug  6 08:20:58 2016	(r303789)
+++ stable/10/sys/kern/kern_fork.c	Sat Aug  6 08:23:36 2016	(r303790)
@@ -1044,9 +1044,9 @@ fork_exit(void (*callout)(void *, struct
 
 /*
  * Simplified back end of syscall(), used when returning from fork()
- * directly into user mode.  Giant is not held on entry, and must not
- * be held on return.  This function is passed in to fork_exit() as the
- * first parameter and is called when returning to a new userland process.
+ * directly into user mode.  This function is passed in to fork_exit()
+ * as the first parameter and is called when returning to a new
+ * userland process.
  */
 void
 fork_return(struct thread *td, struct trapframe *frame)


More information about the svn-src-all mailing list