]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/thread.tex
Updated MicroWindows patch file
[wxWidgets.git] / docs / latex / wx / thread.tex
index 962df682eb4cdc59cfc96a159c8ef9e4e2630fbc..34028509b8e0968bed07ec93aba99d88bdd23d36 100644 (file)
@@ -23,9 +23,10 @@ terminate and destroy itself.
 
 This means, of course, that all detached threads {\bf must} be created on the
 heap because the thread will call {\tt delete this;} upon termination. Joinable
-threads may be created on the stack although more usually they will be created on the heap.
-Don't create global thread objects because they allocate memory in their constructor,
-which will cause problems for the memory checking system.
+threads may be created on the stack although more usually they will be created
+on the heap as well. Don't create global thread objects because they allocate
+memory in their constructor, which will cause problems for the memory checking
+system.
 
 \wxheading{Derived from}