search for: is_start

Displaying 2 results from an estimated 2 matches for "is_start".

Did you mean: os_start
2006 Feb 16
1
Interaction between R and Perl
...ti-users utilisation: - Can I change the directory where R is running in order to have a directory per user? Then no problem of erasing R data of an other user. - If it's not possible, can I limite the number of users at the same time? I see "lock", "is_blocked" and "is_started" options in Statistics-R module. How can I use them? Thanks! B??line
2009 Jul 15
0
[PATCH] rename for_each_cpu() to for_each_possible_cpu()
...ck_irqrestore(&xenpfm_context_lock, flags); @@ -7388,7 +7388,7 @@ again: goto again; } - for_each_cpu(cpu) { + for_each_possible_cpu(cpu) { pfm_context_t* ctx = per_cpu(xenpfm_context, cpu); per_cpu(xenpfm_context, cpu) = NULL; @@ -7740,7 +7740,7 @@ xenpfm_start_stop_locked(int is_start) arg.is_start = is_start; atomic_set(&arg.started, 1); /* 1 for this cpu */ atomic_set(&arg.finished, 0); - for_each_cpu(cpu) + for_each_possible_cpu(cpu) arg.error[cpu] = 0; BUG_ON(!spin_is_locked(&xenpfm_context_lock)); --- 2009-07-10.orig/xen/arch/ia64/linux-xen/smpboot....