search for: r_time

Displaying 8 results from an estimated 8 matches for "r_time".

Did you mean: _time
2013 Mar 10
2
Writing to Spreadsheet issues
...ng trouble with this code: trOne <- read.csv("*.csv", header=TRUE) srOne <- read.csv("*/SRdivision1.csv", header=TRUE) row = 1 for (g in 1:162) { e = trOne[g, "END_TIME"] s = trOne[g, "START_TIME"] q = trOne[g, "OCC_TIME"] r = trOne[g, "R_TIME"] gazeSum = 0 n = 0 print(g) while (s <= e) { if (srOne[row, "timestamp"] == 670920) { print(srOne[row, "timestamp"]) } if (r == srOne[row, "timestamp"] ) { trOne[g, "R_EYE_POS"] = srOne[row, "LEFT_GAZE_X"] } if (q == srOne[row, "ti...
2009 Feb 10
7
hang on restore in 3.3.1
...= 0xffffffff ] CPU0 200130258167202 (+ 1735) domain_wake [ domid = 0x00000062, edomid = 0x00000000 ] CPU0 200130258168511 (+ 1309) switch_infprev [ old_domid = 0x00000000, runtime = 31143 ] CPU0 200130258168716 (+ 205) switch_infnext [ new_domid = 0x00000062, time = 786, r_time = 30000000 ] CPU0 200130258169338 (+ 622) __enter_scheduler [ prev<domid:edomid> = 0x00000000 : 0x00000000, next<domid:edomid> = 0x00000062 : 0x00000000 ] CPU0 200130258175532 (+ 6194) VMENTRY [ dom:vcpu = 0x00000062 ] CPU0 200130258179633 (+ 4101) VMEXIT [ dom:...
2005 May 17
8
scheduler independent forced vcpu selection
I''m working on a new hypercall, do_confer, which allows the directed yielding of a vcpu to another vcpu. It is mainly used when a vcpu fails to acquire a spinlock, yielding to the lock holder instead of spinning. I ported the ppc64 spinlock implementation for the i386 linux portion. In implementing the hypercall, I''ve been trying to figure out how to get the scheduler
2008 Apr 28
0
(no subject)
Hi R users Here is an example of my data (only a small part) Year Season A_Time R_Time O_Time All_Time AandR_Time A_number R_number O_number AandR_number all_number 1999 Winter 9.590741 35.312963 42.759524 23.228431 18.164815 18 9 7 27 34 2000 Winter 9.899537 47.945000 59.744444 20.301333 18.170290 36 10...
2008 Apr 28
0
Two graphs on one using barchart
> Hi R users > Here is an example of my data (only a small part) > > Year Season A_Time R_Time O_Time All_Time AandR_Time > A_number R_number O_number AandR_number all_number > 1999 Winter 9.590741 35.312963 42.759524 23.228431 18.164815 > 18 9 7 27 > 34 > 2000 Winter 9.899537 47.945000 59.744444 20.301333 18.17029...
2015 Sep 29
10
All-round reclocking improvements
In bulletpoints: - Add some support for G94 and G96 reclocking. Has been tested on literally two cards, which is hardly adequate as "full coverage". On the other hand, the changes were small enough to make me confident this might work for others as well. - Fix NV50 wait for VBLANK when no monitor is plugged in. - Voltage related inprovements for GT21x. - Slightly improve Keplers
2007 Jan 17
11
[PATCH] Add RCU support into Xen - Repost
...xen/errno.h> #include <xen/guest_access.h> +#include <xen/rcupdate.h> #include <xen/multicall.h> #include <public/sched.h> @@ -552,9 +553,15 @@ static void schedule(void) struct schedule_data *sd; struct task_slice next_slice; s32 r_time; /* time for new dom to run */ + int cpu = smp_processor_id(); ASSERT(!in_irq()); ASSERT(this_cpu(mc_state).flags == 0); + + if (rcu_pending(cpu)) + /* since __enter_scheduler is called from softirq context + * we know we are in a quiescent st...
2007 Jan 17
11
[PATCH] Add RCU support into Xen - Repost
...xen/errno.h> #include <xen/guest_access.h> +#include <xen/rcupdate.h> #include <xen/multicall.h> #include <public/sched.h> @@ -552,9 +553,15 @@ static void schedule(void) struct schedule_data *sd; struct task_slice next_slice; s32 r_time; /* time for new dom to run */ + int cpu = smp_processor_id(); ASSERT(!in_irq()); ASSERT(this_cpu(mc_state).flags == 0); + + if (rcu_pending(cpu)) + /* since __enter_scheduler is called from softirq context + * we know we are in a quiescent st...