diff options
author | Alexander Golubev <[email protected]> | 2024-03-12 01:44:49 +0300 |
---|---|---|
committer | Alexander Golubev <[email protected]> | 2024-03-14 00:11:47 +0300 |
commit | f610c11869e67d9c79be696de5d5ed69a4761b1b (patch) | |
tree | 57dcfdd70d39ae4a69119397e4d9eff002804d8a /doc/html/threads.html | |
parent | 558bc78e5b4a4d78a3e430c84d790eaa0615fe5e (diff) | |
download | tqt3-fix/no-thread.tar.gz tqt3-fix/no-thread.zip |
TQT_THREAD_SUPPORT->!TQT_NO_THREAD: update documentationfix/no-thread
Signed-off-by: Alexander Golubev <[email protected]>
Diffstat (limited to 'doc/html/threads.html')
-rw-r--r-- | doc/html/threads.html | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/doc/html/threads.html b/doc/html/threads.html index 6e13f2488..8d84c8977 100644 --- a/doc/html/threads.html +++ b/doc/html/threads.html @@ -74,16 +74,12 @@ threading see our <a href="#reading">Recommended Reading</a> list. </h2> <a name="2"></a><p> When TQt is installed on Windows, thread support is an option on some compilers. -<p> On Mac OS X and Unix, thread support is enabled by adding the -<tt>-thread</tt> option when running the <tt>configure</tt> script. On Unix -platforms where multithreaded programs must be linked in special ways, -such as with a special libc, installation will create a separate -library, <tt>libtqt-mt</tt> and hence threaded programs must be linked -against this library (with <tt>-ltqt-mt</tt>) rather than the standard TQt -library. -<p> On both platforms, you should compile with the macro <tt>TQT_THREAD_SUPPORT</tt> defined (e.g. compile with -<tt>-DTQT_THREAD_SUPPORT</tt>). On Windows, this is usually done by an -entry in <tt>ntqconfig.h</tt>. +<p> On Mac OS X and Unix, thread support is enabled by default on platforms which +support it. It might be disabled by adding the <tt>-no-thread</tt> option when +running the <tt>configure</tt> script. Due to historical reasons on Unix platforms, +installation will create a separate library, <tt>libtqt-mt</tt> and hence threaded +programs must be linked against this library (with <tt>-ltqt-mt</tt>) rather than +the standard <tt>libtqt</tt> library. <p> <h2> The Thread Classes </h2> <a name="3"></a><p> These classes are built into the TQt library when thread support is enabled: |