From 6acd7a06eda802c157c972cb3d3289d7b0c6fc77 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Thu, 26 Jun 1997 06:55:29 +0000 Subject: [PATCH] Change for Watcom 11: documentation claims that 0 is not a valid value for the stack-size parameter to beginthreadx. --- v7/src/microcode/ntutl/scheme32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.25.1