1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Fix for bug #17353.

This commit is contained in:
igreenhoe@mysql.com
2006-04-17 19:57:50 -07:00
parent 592dc88be7
commit ed2432494f

View File

@@ -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
# #