Commit ed243249 authored by igreenhoe@mysql.com's avatar igreenhoe@mysql.com

Fix for bug #17353.

parent 592dc88b
...@@ -321,10 +321,13 @@ then ...@@ -321,10 +321,13 @@ then
ulimit -n $open_files ulimit -n $open_files
args="--open-files-limit=$open_files $args" args="--open-files-limit=$open_files $args"
fi fi
if test -n "$core_file_size" fi
then
ulimit -c $core_file_size # Try to set the core file size (even if we aren't root) because many systems
fi # don't specify a hard limit on core file size.
if test -n "$core_file_size"
then
ulimit -c $core_file_size
fi fi
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment