diff options
author | unknown <monty@donna.mysql.com> | 2001-01-14 12:25:30 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-01-14 12:25:30 +0200 |
commit | f62c9ed1e34bcacf56ed27420f2fc10a5c8a5b0f (patch) | |
tree | 2246f6c5eb1aa8db6ceeda223a34ef345f2d163a /sql/mysqld.cc | |
parent | 686faae582dad736ac85144ecb4e50c1b1fe579e (diff) | |
download | mariadb-git-f62c9ed1e34bcacf56ed27420f2fc10a5c8a5b0f.tar.gz |
Fixed that --open-files-limit works on Linux
Docs/manual.texi:
Update of security and replication sections
sql/ha_berkeley.cc:
More documentation
sql/sql_base.cc:
Fixed overflow bug
sql/sql_parse.cc:
Variable name change
Diffstat (limited to 'sql/mysqld.cc')
-rw-r--r-- | sql/mysqld.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index 4d9b7982f48..3d2c850ee36 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -119,7 +119,7 @@ inline void reset_floating_point_exceptions() #else #include <my_pthread.h> // For thr_setconcurency() #endif -#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE) && !defined(__linux__) && !defined(HAVE_mit_thread) +#if defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE) && !defined(HAVE_mit_thread) #define SET_RLIMIT_NOFILE #endif |