summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorunknown <monty@mysql.com>2004-02-19 19:36:53 +0200
committerunknown <monty@mysql.com>2004-02-19 19:36:53 +0200
commit4e01d4de159920e56f3f0bfa5e943e987c7e45e8 (patch)
tree10c40306ab389acc3169261c4ed83c2780153bd6 /include
parent7c0e7321b91e1132916b5be62d6b96f354abe451 (diff)
downloadmariadb-git-4e01d4de159920e56f3f0bfa5e943e987c7e45e8.tar.gz
crease number of open files to 2048 on windows
Don't do fsync on temporary .frm files include/config-win.h: Increase number of open files to 2048 on windows sql/unireg.cc: Don't do fsync on temporary files
Diffstat (limited to 'include')
-rw-r--r--include/config-win.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/config-win.h b/include/config-win.h
index e6f03a10afb..bb6d663bd8d 100644
--- a/include/config-win.h
+++ b/include/config-win.h
@@ -316,7 +316,7 @@ inline double ulonglong2double(ulonglong value)
#define FN_ROOTDIR "\\"
#define FN_NETWORK_DRIVES /* Uses \\ to indicate network drives */
#define FN_NO_CASE_SENCE /* Files are not case-sensitive */
-#define MY_NFILE 1024
+#define MY_NFILE 2048
#define DO_NOT_REMOVE_THREAD_WRAPPERS
#define thread_safe_increment(V,L) InterlockedIncrement((long*) &(V))