Search



Search Results
Displaying 31 to 40 of 139 total results
https://dev.mysql.com/doc/internals/en/threads.html
InnoDB's internal os_thread_set_priority() function implements three priorities (Background, normal, and high) but only on windows. Threads in mysqld can run at four different priorities, defined in mysql_priv.h: #define INTERRUPT_PRIOR 10 #define ...
https://dev.mysql.com/doc/internals/en/guided-tour-os-specific.html
We've found that the majority of Windows programmers who download and build MySQL from source use Microsoft Visual C. netware NEW-RPMS os2 VC++Files A few words are in order about the directories that contain files which relate to a particular ...
https://dev.mysql.com/doc/internals/en/guided-tour.html
What we're about to do in this section is pick up the latest copy of the MySQL source code off the Internet. Next we'll open up some of the files that are vital to MySQL's working, and comment on specific lines in the source code. Then we'll get a ...
https://dev.mysql.com/doc/internals/en/creating-binary-packages.html
Using “generic” Unix build with Makefiles: make package On Windows, using Visual Studio generator: devenv mysql.sln /build relwithdebinfo /project package On Windows, CMake 2.8 and later needs no external tools to generate Zip files. Another way ... A package can be created in the form of a .tar.gz archive or .zip ...
https://dev.mysql.com/doc/internals/en/strings-directory.html
Many of the files in this subdirectory are equivalent to well-known functions that appear in most C string libraries. On the other hand, some of the files are MySQL additions or improvements. Often the MySQL changes are attempts to optimize the ...
https://dev.mysql.com/doc/internals/en/test-execution-hanging.html
Symptom: No text flooding through the command window where a test is running. Run this command in a different window: tail -f <var_dir>/mysqld.1/data/mysql/general_log.CSV If you see some changes, your test is alive.
https://dev.mysql.com/doc/internals/en/zlib-directory.html
zlib is a data compression library used to support the compressed protocol and the COMPRESS/UNCOMPRESS functions under Windows. On Unix, MySQL uses the system libgz.a library for this purpose. Zlib --- which presumably stands for "Zip Library" --- ...
https://dev.mysql.com/doc/internals/en/cmake-installation.html
In the following instructions, the CMake download page is http://www.cmake.org/cmake/resources/software.html. Mac OS X To download and install the latest distribution from the CMake download page, download the .dmg image and open it. Alternatively, ...
https://dev.mysql.com/doc/internals/en/generating-browsable-binary-log-information.html
Source files in the sql directory of a MySQL source tree or source distribution contain comments that can be processed with doxygen to generate HTML files that describe classes, files, and so forth. To generate the HTML files and view information ...These commands create a subdirectory named html containing the HTML output: shell> doxygen -g shell> doxygen To view the top-level index page, load the html/index.html file into your ...
https://dev.mysql.com/doc/internals/en/autotools-plugin-macros.html
Example: MYSQL_PLUGIN_DEFINE(innobase, WITH_INNOBASE_STORAGE_ENGINE) Declaring a source directory for a plugin: MYSQL_PLUGIN_DIRECTORY(name, dir-name) Includes the specified directory into the build. This macro is roughly equivalent to: ... The ...
Displaying 31 to 40 of 139 total results