From dbcda636a6a3d67e31ca76b5a31b6a99ea0bade4 Mon Sep 17 00:00:00 2001 From: usa Date: Fri, 8 Jun 2012 01:40:08 +0000 Subject: * thread_win32.c (native_thread_create): add a comment. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35956 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread_win32.c') diff --git a/thread_win32.c b/thread_win32.c index 3fd844018e..459ae4c097 100644 --- a/thread_win32.c +++ b/thread_win32.c @@ -628,7 +628,7 @@ thread_start_func_1(void *th_ptr) static int native_thread_create(rb_thread_t *th) { - size_t stack_size = 4 * 1024; /* 4KB */ + size_t stack_size = 4 * 1024; /* 4KB is the minimum commit size */ th->thread_id = w32_create_thread(stack_size, thread_start_func_1, th); if ((th->thread_id) == 0) { -- cgit v1.2.3