diff options
author | Chris Cleeland <chris.cleeland@gmail.com> | 1997-03-28 05:28:53 +0000 |
---|---|---|
committer | Chris Cleeland <chris.cleeland@gmail.com> | 1997-03-28 05:28:53 +0000 |
commit | 2078b0fc413c185ded5e0d2077456766a1811f67 (patch) | |
tree | 55e0eb72b2cf7bd6f33d928c5fe36fe88df881fd /ace/Thread.h | |
parent | d4de5833cbe87045c589e9d7313500abf001124c (diff) | |
download | ATCD-2078b0fc413c185ded5e0d2077456766a1811f67.tar.gz |
Integrated changes from Thilo.
Diffstat (limited to 'ace/Thread.h')
-rw-r--r-- | ace/Thread.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/Thread.h b/ace/Thread.h index bb5411e8b95..17e3bf4ac47 100644 --- a/ace/Thread.h +++ b/ace/Thread.h @@ -34,7 +34,7 @@ public: long flags = THR_NEW_LWP, ACE_thread_t *t_id = 0, ACE_hthread_t *t_handle = 0, - u_int priority = 0, + long priority = -1, void *stack = 0, size_t stack_size = 0); // Spawn a new thread, which executes "func" with argument "arg". @@ -43,7 +43,7 @@ public: ACE_THR_FUNC func, void *arg = 0, long flags = THR_NEW_LWP, - u_int priority = 0, + long priority = -1, void *stack[] = 0, size_t stack_size[] = 0); // Spawn N new threads, which execute <func> with argument <arg>. @@ -60,7 +60,7 @@ public: ACE_THR_FUNC func, void *arg, long flags, - u_int priority = 0, + long priority = -1, void *stack[] = 0, size_t stack_size[] = 0, ACE_hthread_t thread_handles[] = 0); |