]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/thread.h
more Sun C++ compiler warning fixes: in particular, added an ugly but
[wxWidgets.git] / include / wx / thread.h
index 7e575b2f1e74bfaa993719fa39286a7484131f03..f80aa89bf515af96b77c2c15ffaa59efae0cdc0e 100644 (file)
@@ -303,8 +303,11 @@ public:
     // from _another_ thread (typically the thread that created this one, e.g.
     // the main thread), not from the thread itself
 
-        // create a new thread - call Run() to start it
-    wxThreadError Create();
+        // create a new thread and optionally set the stack size on
+        // platforms that support that - call Run() to start it
+        // (special cased for watcom which won't accept 0 default)
+
+    wxThreadError Create(unsigned int stackSize = 0);
 
         // starts execution of the thread - from the moment Run() is called
         // the execution of wxThread::Entry() may start at any moment, caller
@@ -525,3 +528,5 @@ public:
 #endif // wxUSE_THREADS
 
 #endif // __THREADH__
+
+// vi:sts=4:sw=4:et