From: Chris Hanson Date: Thu, 26 Jun 1997 06:55:29 +0000 (+0000) Subject: Change for Watcom 11: documentation claims that 0 is not a valid value X-Git-Tag: 20090517-FFI~5100 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=6acd7a06eda802c157c972cb3d3289d7b0c6fc77;p=mit-scheme.git Change for Watcom 11: documentation claims that 0 is not a valid value for the stack-size parameter to beginthreadx. --- diff --git a/v7/src/microcode/ntutl/scheme32.c b/v7/src/microcode/ntutl/scheme32.c index 5bb87f7e2..ab5e72a29 100644 --- a/v7/src/microcode/ntutl/scheme32.c +++ b/v7/src/microcode/ntutl/scheme32.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: scheme32.c,v 1.14 1997/04/02 07:44:09 cph Exp $ +$Id: scheme32.c,v 1.15 1997/06/26 06:55:29 cph Exp $ Copyright (c) 1993-97 Massachusetts Institute of Technology @@ -166,7 +166,7 @@ win32_install_async_timer (void ** state_ptr, (scm_timer -> grab_int_regs) = grab_int_regs; (scm_timer -> release_int_regs) = release_int_regs; exit_timer_thread = 0; - if (_beginthreadex (0, 0, timer_thread_proc, scm_timer, 0, (&id))) + if (_beginthreadex (0, 0x2000, timer_thread_proc, scm_timer, 0, (&id))) { (*state_ptr) = scm_timer; return (WIN32_ASYNC_TIMER_OK);