From: Date: September 29 2008 4:54pm Subject: bzr commit into mysql-5.1 branch (davi:2746) Bug#35164 List-Archive: http://lists.mysql.com/commits/54663 X-Bug: 35164 Message-Id: <20080929145424.6B81BEC383@skynet.ctb.virtua.com.br> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit # At a local mysql-5.1 repository of davi 2746 Davi Arnaut 2008-09-29 Bug#35164: Large number of invalid pthread_attr_setschedparam calls Deprecated --skip-thread-priority startup option as newer version of the server won't change the thread priorities by default. modified: sql/mysqld.cc per-file messages: sql/mysqld.cc Deprecated --skip-thread-prioity option. === modified file 'sql/mysqld.cc' --- a/sql/mysqld.cc 2008-08-26 09:31:17 +0000 +++ b/sql/mysqld.cc 2008-09-29 14:54:13 +0000 @@ -6229,7 +6229,7 @@ Can't be set to 1 if --log-slave-updates {"skip-symlink", OPT_SKIP_SYMLINKS, "Don't allow symlinking of tables. Deprecated option. Use --skip-symbolic-links instead.", 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}, {"skip-thread-priority", OPT_SKIP_PRIOR, - "Don't give threads different priorities.", 0, 0, 0, GET_NO_ARG, NO_ARG, + "Don't give threads different priorities. Deprecated option.", 0, 0, 0, GET_NO_ARG, NO_ARG, DEFAULT_SKIP_THREAD_PRIORITY, 0, 0, 0, 0, 0}, #ifdef HAVE_REPLICATION {"slave-load-tmpdir", OPT_SLAVE_LOAD_TMPDIR, @@ -7871,6 +7871,9 @@ mysqld_get_one_option(int optid, break; case (int) OPT_SKIP_PRIOR: opt_specialflag|= SPECIAL_NO_PRIOR; + sql_print_warning("The --skip-thread-priority startup option is deprecated " + "and will be removed in MySQL 7.0. MySQL 6.0 and onward " + "versions won't give threads different priorities."); break; case (int) OPT_SKIP_LOCK: opt_external_locking=0;