svn commit: r269908 - head/lib/libthr/thread
Konstantin Belousov
kib at FreeBSD.org
Wed Aug 13 05:47:50 UTC 2014
Author: kib
Date: Wed Aug 13 05:47:49 2014
New Revision: 269908
URL: http://svnweb.freebsd.org/changeset/base/269908
Log:
Style.
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
Modified:
head/lib/libthr/thread/thr_stack.c
Modified: head/lib/libthr/thread/thr_stack.c
==============================================================================
--- head/lib/libthr/thread/thr_stack.c Wed Aug 13 05:44:08 2014 (r269907)
+++ head/lib/libthr/thread/thr_stack.c Wed Aug 13 05:47:49 2014 (r269908)
@@ -268,7 +268,7 @@ _thr_stack_alloc(struct pthread_attr *at
/* Map the stack and guard page together, and split guard
page from allocated space: */
- if ((stackaddr = mmap(stackaddr, stacksize+guardsize,
+ if ((stackaddr = mmap(stackaddr, stacksize + guardsize,
_rtld_get_stack_prot(), MAP_STACK,
-1, 0)) != MAP_FAILED &&
(guardsize == 0 ||
More information about the svn-src-all
mailing list