[#29911] [Bug #3231] Digest Does Not Build — Charlie Savage <redmine@...>

Bug #3231: Digest Does Not Build

19 messages 2010/05/01

[#29920] [Feature #3232] Loops (while/until) should return last statement value if any, like if/unless — Benoit Daloze <redmine@...>

Feature #3232: Loops (while/until) should return last statement value if any, like if/unless

9 messages 2010/05/01

[#29997] years in Time.utc — Xavier Noria <fxn@...>

Does anyone have a precise statement about the years supported by

13 messages 2010/05/04

[#30010] [Bug #3248] extension 'tk' is finding tclConfig.sh and tkConfig.sh incorrectly — Luis Lavena <redmine@...>

Bug #3248: extension 'tk' is finding tclConfig.sh and tkConfig.sh incorrectly

9 messages 2010/05/05

[#30226] [Bug #3288] Segmentation fault - activesupport-3.0.0.beta3/lib/active_support/callbacks.rb:88 — Szymon Jeż <redmine@...>

Bug #3288: Segmentation fault - activesupport-3.0.0.beta3/lib/active_support/callbacks.rb:88

10 messages 2010/05/13

[#30358] tk doesn't startup well in doze — Roger Pack <rogerdpack2@...>

Currently with 1.9.x and tk 8.5,the following occurs

12 messages 2010/05/22

[ruby-core:30285] Re: [Feature #3176] Thread#priority= should actually do something

From: Caleb Clausen <vikkous@...>
Date: 2010-05-17 22:38:57 UTC
List: ruby-core #30285
On 5/17/10, KOSAKI Motohiro <kosaki.motohiro@gmail.com> wrote:
> setschedparam()? no, it's for real time thread mess. please don't use it.

But setpriority always modifies the current thread. :-/ The API of
#priority= is supposed to allow changing the priority from another
thread.

pthread_setschedparam is supposed to set the priority and policy of a
thread. What I was trying to do was enable the code in
native_thread_apply_priority, which looks like it's retaining the
current policy and changing just the priority. I thought that should
end up with the policy staying at SCHED_OTHER. But if it was changing
it to some real-time policy, that could explain what I saw.

Clearly, I need to try it the way you did it. The resulting
restriction on #priority= made me unhappy, tho, and I tried to "fix"
it. When that didn't work, I kind of lost interest...

In This Thread