summaryrefslogtreecommitdiffstats
path: root/doc/threads.doc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-07-10 18:56:16 +0900
commit252a2ec8b0f0f9cf20c947737087b24a8185b588 (patch)
treeb48be8863db3bc1c223ac270a258b5c1124cb0e3 /doc/threads.doc
parent87d29563e3ccdeb7fea0197e262e667ef323ff9c (diff)
downloadtqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.tar.gz
tqt3-252a2ec8b0f0f9cf20c947737087b24a8185b588.zip
Rename IO and network class nt* related files to equivalent tq*
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/threads.doc')
-rw-r--r--doc/threads.doc14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/threads.doc b/doc/threads.doc
index bd213270..5f0ffb05 100644
--- a/doc/threads.doc
+++ b/doc/threads.doc
@@ -218,8 +218,8 @@ thread.
\i \e None of the TQObject based classes included in the TQt library are
\e reentrant. This includes all widgets (e.g. TQWidget and
-subclasses), OS kernel classes (e.g. QProcess, QAccel, TQTimer), and
-all networking classes (e.g. QSocket, QDns).
+subclasses), OS kernel classes (e.g. TQProcess, QAccel, TQTimer), and
+all networking classes (e.g. TQSocket, TQDns).
\i TQObject and all of its subclasses are \e not \e thread-safe. This
includes the entire event delivery system. It is important to
@@ -271,11 +271,11 @@ Any operations that generate events must not be called by any thread
other than the GUI thread. Examples of such operations are:
\list
-\i creating a TQWidget, TQTimer, QSocketNotifier, QSocket or other network class.
+\i creating a TQWidget, TQTimer, TQSocketNotifier, TQSocket or other network class.
\i moving, resizing, showing or hiding a TQWidget.
\i starting or stoping a TQTimer.
-\i enabling or disabling a QSocketNotifier.
-\i using a QSocket or other network class.
+\i enabling or disabling a TQSocketNotifier.
+\i using a TQSocket or other network class.
\endlist
Events generated by these operations will be lost on some platforms.
@@ -324,8 +324,8 @@ Some things to watch out for when programming with threads:
\i As mentioned above, TQObject based classes are neither thread-safe
nor reentrant. This includes all widgets (e.g. TQWidget and
-subclasses), OS kernel classes (e.g. QProcess, QAccel), and all
-networking classes (e.g. QSocket, QDns).
+subclasses), OS kernel classes (e.g. TQProcess, QAccel), and all
+networking classes (e.g. TQSocket, TQDns).
\i Deleting a TQObject while pending events are waiting to be delivered
will cause a crash. If you are creating TQObjects in a thread that is