![]() | |||||||||||||
Messages in this thread |
"Eric W. Biederman" wrote:
>
> Unless we can implement do_each_task_pid/while_each_task_pid in terms
> of for_each_task_pid. I am nervous about making the conversion.
Yes, of course. Currently I have:
#define for_each_task_pid(head, who, type, task) \
if ((head = find_pid(who))) \
list_for_each_entry(task, ((head)->tasks + type), pids[type])
// OBSOLETE
#define do_each_task_pid(who, type, task) \
do { \
struct pid_head * __pid_head__; \
for_each_task_pid(__pid_head__, who, type, task) {
#define while_each_task_pid(who, type, task) \
} \
} while (0)
It's better not to change the users of do_each_task_pid() for some
time at least.
Oleg.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
| ||||||||||||
| Last update: 2006-03-07 20:50 [W:0.046 / U:0.020 seconds] ©2003-2008 Jasper Spaans | |||||||||||||