summaryrefslogtreecommitdiff
path: root/sql/threadpool_generic.cc
Commit message (Collapse)AuthorAgeFilesLines
* Make possible to use clang on Windows (clang-cl)Vladislav Vaintroub2018-02-201-4/+4
| | | | | | -DWITH_ASAN can be used as well now, on x64 Fix many clang-cl warnings.
* Merge bb-10.2-ext into 10.3Marko Mäkelä2018-02-151-2/+1
|\
| * threadpool: release mutex on io_poll_create failureDaniel Black2018-01-311-2/+1
| | | | | | | | Also use the group pointer previously allocated.
* | Cleanup - removed warning suppression - no longer needed.Vladislav Vaintroub2018-02-071-3/+0
| |
* | Merge bb-10.2-ext into 10.3Marko Mäkelä2017-11-301-52/+77
|\ \ | |/
| * Windows, generic threadpool cleanupsVladislav Vaintroub2017-11-281-52/+77
| | | | | | | | | | | | | | | | - get rid of casts between int and HANDLE. - store file descriptor in TP_connection_generic to get rid of multiple mysql_socket_getfd(c->thd->net.vio->mysql_socket)) Also support named pipes (no reason not to support, since it is easy)
* | Merge bb-10.2-ext into 10.3Marko Mäkelä2017-10-041-5/+8
|\ \ | |/
| * MDEV-13384 - misc Windows warnings fixedVladislav Vaintroub2017-09-281-3/+6
| |
| * MDEV-13844 : Fix Windows warnings. Fix DBUG_PRINT.Vladislav Vaintroub2017-09-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | - Fix win64 pointer truncation warnings (usually coming from misusing 0x%lx and long cast in DBUG) - Also fix printf-format warnings Make the above mentioned warnings fatal. - fix pthread_join on Windows to set return value.
* | Enusure that my_global.h is included firstMichael Widenius2017-08-241-1/+1
|/ | | | | | | | | | - Added sql/mariadb.h file that should be included first by files in sql directory, if sql_plugin.h is not used (sql_plugin.h adds SHOW variables that must be done before my_global.h is included) - Removed a lot of include my_global.h from include files - Removed include's of some files that my_global.h automatically includes - Removed duplicated include's of my_sys.h - Replaced include my_config.h with my_global.h
* Merge branch '10.1' into 10.2Sergei Golubchik2017-03-301-1/+1
|
* MDEV-10297 Add priorization to threadpoolVladislav Vaintroub2016-09-221-0/+1769
Also MDEV-10385 Threadpool refactoring