diff options
author | unknown <monty@donna.mysql.fi> | 2001-04-18 23:47:11 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.fi> | 2001-04-18 23:47:11 +0300 |
commit | c38762c296dd61c9a6b84153c19ceac65d877008 (patch) | |
tree | 62925f613305f153cac7b3281ddea83336002c0d /acconfig.h | |
parent | 7ef3bd37b9a7468efa5ff241f614a9987638e884 (diff) | |
download | mariadb-git-c38762c296dd61c9a6b84153c19ceac65d877008.tar.gz |
Added test for PTHREAD_YIELD
Removed test of default master parameter
Don't lock locked tables in REPAIR
Changed optimzation for SELECT * from table,table ORDER BY keypart LIMIT
BitKeeper/deleted/.del-have_default_master.inc~a54c86e65a6c4af:
Delete: mysql-test/include/have_default_master.inc
BitKeeper/deleted/.del-have_default_master.require~1465255ffdaf82f:
Delete: mysql-test/r/have_default_master.require
Docs/manual.texi:
Changelog for 3.23.38
acconfig.h:
Added test for PTHREAD_YIELD
acinclude.m4:
Added test for PTHREAD_YIELD
configure.in:
Added test for PTHREAD_YIELD
innobase/os/os0thread.c:
Added test for PTHREAD_YIELD
mysql-test/r/lock.result:
Added test of lock bug
mysql-test/t/lock.test:
Added test of lock bug
mysql-test/t/rpl000014.test:
Removed test of default master parameter
mysql-test/t/rpl000015.test:
Removed test of default master parameter
mysql-test/t/rpl000016.test:
Removed test of default master parameter
sql/ha_myisam.cc:
Don't lock locked tables in REPAIR
sql/sql_select.cc:
Changed optimzation for SELECT * from table,table ORDER BY keypart LIMIT
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h index 12024a344b0..c6a67ac7f26 100644 --- a/acconfig.h +++ b/acconfig.h @@ -114,6 +114,12 @@ /* pthread_attr_setscope */ #undef HAVE_PTHREAD_ATTR_SETSCOPE +/* pthread_yield that doesn't take any arguments */ +#undef HAVE_PTHREAD_YIELD_ZERO_ARG + +/* pthread_yield function with one argument */ +#undef HAVE_PTHREAD_YIELD_ONE_ARG + /* POSIX readdir_r */ #undef HAVE_READDIR_R |