-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.