diff options
author | Christopher Faylor <me@cgf.cx> | 2011-06-06 05:02:13 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2011-06-06 05:02:13 +0000 |
commit | b86f999af19e2ef688661a66c07420089425646a (patch) | |
tree | b4d01ee69bf9c61cd94bc98520820608595a3a53 /winsup/cygwin/miscfuncs.cc | |
parent | daf7238603ffb7ed994ee492ed63620f6f919835 (diff) | |
download | newlib-b86f999af19e2ef688661a66c07420089425646a.zip newlib-b86f999af19e2ef688661a66c07420089425646a.tar.gz newlib-b86f999af19e2ef688661a66c07420089425646a.tar.bz2 |
whitespace elimination
Diffstat (limited to 'winsup/cygwin/miscfuncs.cc')
-rw-r--r-- | winsup/cygwin/miscfuncs.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/cygwin/miscfuncs.cc b/winsup/cygwin/miscfuncs.cc index dde06bf..0ac25f4 100644 --- a/winsup/cygwin/miscfuncs.cc +++ b/winsup/cygwin/miscfuncs.cc @@ -510,7 +510,7 @@ CygwinCreateThread (LPTHREAD_START_ROUTINE thread_func, PVOID thread_arg, ULONG real_guardsize = 0; thread_wrapper_arg *wrapper_arg; HANDLE thread = NULL; - + wrapper_arg = (thread_wrapper_arg *) ccalloc (HEAP_STR, 1, sizeof *wrapper_arg); if (!wrapper_arg) @@ -549,9 +549,9 @@ CygwinCreateThread (LPTHREAD_START_ROUTINE thread_func, PVOID thread_arg, real_stacksize = roundup2 (real_stacksize, wincap.allocation_granularity ()); /* Reserve stack. - FIXME? If the TOP_DOWN method tends to collide too much with - other stuff, we should provide our own mechanism to find a - suitable place for the stack. Top down from the start of + FIXME? If the TOP_DOWN method tends to collide too much with + other stuff, we should provide our own mechanism to find a + suitable place for the stack. Top down from the start of the Cygwin DLL comes to mind. */ real_stackaddr = VirtualAlloc (NULL, real_stacksize, MEM_RESERVE | MEM_TOP_DOWN, |