diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-10-21 23:14:23 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-10-21 23:14:23 +0000 |
commit | 1a1e63ec7b59194397cdf36bfa66f858a82b1bce (patch) | |
tree | 14a96f6198d9db67e66b3cae44f47ff8e36b0b4c /cpp/include/IceUtil/Thread.h | |
parent | detach instead of join (diff) | |
download | ice-1a1e63ec7b59194397cdf36bfa66f858a82b1bce.tar.bz2 ice-1a1e63ec7b59194397cdf36bfa66f858a82b1bce.tar.xz ice-1a1e63ec7b59194397cdf36bfa66f858a82b1bce.zip |
Added stack-size param to start
Diffstat (limited to 'cpp/include/IceUtil/Thread.h')
-rw-r--r-- | cpp/include/IceUtil/Thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/include/IceUtil/Thread.h b/cpp/include/IceUtil/Thread.h index d0a4a56193b..f13965a56f1 100644 --- a/cpp/include/IceUtil/Thread.h +++ b/cpp/include/IceUtil/Thread.h @@ -124,7 +124,7 @@ public: virtual void run() = 0; - ThreadControl start(); + ThreadControl start(size_t = 0); ThreadControl getThreadControl() const; |