diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-13 22:30:13 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-13 22:30:13 +0000 |
commit | 9e055888020fb6e710ea0896d8b0cb7af42ce9e1 (patch) | |
tree | 429032cb2cd4bbebb73c11cd970274579ee1397c /ace/Thread.h | |
parent | 695862786e2f4912812661a83ad338584d8351bb (diff) | |
download | ATCD-9e055888020fb6e710ea0896d8b0cb7af42ce9e1.tar.gz |
foo
Diffstat (limited to 'ace/Thread.h')
-rw-r--r-- | ace/Thread.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ace/Thread.h b/ace/Thread.h index aab4b61f413..c1ad50af2d6 100644 --- a/ace/Thread.h +++ b/ace/Thread.h @@ -92,6 +92,12 @@ public: static int suspend (ACE_hthread_t); // Suspend the execution of a particular thread. + static int getprio (ACE_hthread_t, int *prio); + // Get the priority of a particular thread. + + static int setprio (ACE_hthread_t, int prio); + // Set the priority of a particular thread. + static int kill (ACE_thread_t, int signum); // Send a signal to the thread. |