From da59427c66ff04bf693284e726efa75661ea5f26 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Thu, 21 Jun 2012 02:37:44 +0200 Subject: [PATCH] windows: don't set WT_EXECUTELONGFUNCTION for fs operations --- src/win/fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win/fs.c b/src/win/fs.c index b6b97393..e2a328d8 100644 --- a/src/win/fs.c +++ b/src/win/fs.c @@ -56,7 +56,7 @@ #define QUEUE_FS_TP_JOB(loop, req) \ if (!QueueUserWorkItem(&uv_fs_thread_proc, \ req, \ - WT_EXECUTELONGFUNCTION)) { \ + WT_EXECUTEDEFAULT)) { \ uv__set_sys_error((loop), GetLastError()); \ return -1; \ } \