Differences From Artifact [89698eef26]:
- File
src/threading_winapi.m
— part of check-in
[b4023e6bc0]
at
2016-03-28 16:50:16
on branch trunk
— Change the definition of thread priorities
The old definition was quite unpredictable and too platform-specific.
The new one defines -1.0 as lowest priority that still schedules, 0.0 as
the normal priority (meaning the same as the main thread) and +1.0 as
the highest priority that still allows getting preempted. (user: js, size: 3956) [annotate] [blame] [check-ins using]
To Artifact [8257bd1f48]:
- File src/threading_winapi.m — part of check-in [386962cb17] at 2016-03-28 20:14:59 on branch trunk — threading_winapi.m: Cosmetic change (user: js, size: 3940) [annotate] [blame] [check-ins using]
| ︙ | |||
27 28 29 30 31 32 33 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | - - + + + + + - + + + - - - + - - - - - - - + + + - - - + |
return true;
}
bool
of_thread_new(of_thread_t *thread, void (*function)(id), id object,
const of_thread_attr_t *attr)
{
|
| ︙ |