diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-04 13:52:37 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-04 13:52:37 +0000 |
commit | 4ea21040fbde698b8dd6f6bc18a76a251d8e2066 (patch) | |
tree | d2dd90127f9ade0d15e78d21cb941a4209a6144f /performance-tests | |
parent | e7e4e64c76c2978164e2981d59b4e2e309db0544 (diff) | |
download | ATCD-4ea21040fbde698b8dd6f6bc18a76a251d8e2066.tar.gz |
(svc) removed ACE_OS::thr_setprio () calls to set LWP priority, now that ACE handles that internally
Diffstat (limited to 'performance-tests')
-rw-r--r-- | performance-tests/Misc/preempt.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/performance-tests/Misc/preempt.cpp b/performance-tests/Misc/preempt.cpp index 2303f9c8ca7..9a6df14fa6e 100644 --- a/performance-tests/Misc/preempt.cpp +++ b/performance-tests/Misc/preempt.cpp @@ -140,10 +140,6 @@ High_Priority_Task::open (void *) int High_Priority_Task::svc (void) { - // On Solaris 2.5.x, the LWP priority needs to be set. This is the - // ACE way to do that . . . - ACE_OS::thr_setprio (priority_); - ACE_hthread_t thr_handle; ACE_Thread::self (thr_handle); int prio; @@ -242,10 +238,6 @@ Low_Priority_Task::open (void *) int Low_Priority_Task::svc (void) { - // On Solaris 2.5.x, the LWP priority needs to be set. This is the - // ACE way to do that . . . - ACE_OS::thr_setprio (priority_); - ACE_hthread_t thr_handle; ACE_Thread::self (thr_handle); int prio; |