]> sourceware.org Git - newlib-cygwin.git/commitdiff
* miscfuncs.cc (CygwinCreateThread): Add accidentally missing comment.
authorCorinna Vinschen <corinna@vinschen.de>
Fri, 20 May 2011 18:15:12 +0000 (18:15 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Fri, 20 May 2011 18:15:12 +0000 (18:15 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/miscfuncs.cc

index 679d9295a0abb881efe1e63ef29aba7f2105f770..09fe1ea5965f230f5d90839ee3660c7bf25012e8 100644 (file)
@@ -1,3 +1,7 @@
+2011-05-20  Corinna Vinschen  <corinna@vinschen.de>
+
+       * miscfuncs.cc (CygwinCreateThread): Add accidentally missing comment.
+
 2011-05-20  Corinna Vinschen  <corinna@vinschen.de>
 
        * fhandler_process.cc (struct heap_info): Change type of base and end
index af0a355da497d391878e49c63ebb0e7041f466a2..98db1f5914c8e8eaa9d9265411b46c099320f10a 100644 (file)
@@ -527,6 +527,7 @@ CygwinCreateThread (LPTHREAD_START_ROUTINE thread_func, PVOID thread_arg,
     real_stacksize = PTHREAD_STACK_MIN;
   if (stackaddr)
     {
+      /* If the application provided the stack, just use it. */
       wrapper_arg->stackaddr = (char *) stackaddr;
       wrapper_arg->stackbase = (char *) stackaddr + real_stacksize;
     }
This page took 0.030871 seconds and 5 git commands to generate.