Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 142915
b: refs/heads/master
c: e3c8ca8
h: refs/heads/master
i:
  142913: a74f239
  142911: d13741f
v: v3
  • Loading branch information
Nathan Lynch authored and Ingo Molnar committed Apr 9, 2009
1 parent 63add24 commit ff87bbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 01fad98a1f1d3b38adcbab4bd97f7f4cb983ffb5
refs/heads/master: e3c8ca8336707062f3f7cb1cd7e6b3c753baccdd
3 changes: 2 additions & 1 deletion trunk/include/linux/sched.h
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ extern unsigned long long time_sync_thresh;
#define task_is_stopped_or_traced(task) \
((task->state & (__TASK_STOPPED | __TASK_TRACED)) != 0)
#define task_contributes_to_load(task) \
((task->state & TASK_UNINTERRUPTIBLE) != 0)
((task->state & TASK_UNINTERRUPTIBLE) != 0 && \
(task->flags & PF_FROZEN) == 0)

#define __set_task_state(tsk, state_value) \
do { (tsk)->state = (state_value); } while (0)
Expand Down

0 comments on commit ff87bbb

Please sign in to comment.