search for: last_update_time

Displaying 6 results from an estimated 6 matches for "last_update_time".

2006 Feb 09
0
I need help on VICIDIAL and auto dial
...pdate of vla table: |127.0.0.1 |UPDATE vicidial_live_agents set status='QUEUE',lead_id='0',uniqueid=' 1139414618.5', channel='IAX2/u32218094-6', callerid='unknown' where status = 'READY' and server_ip='127.0.0.1' and campaign_id='' and last_update_time > '19700101075955' limit 1;| |SELECT count(*) FROM vicidial_auto_calls where status = 'LIVE' and server_ip='127.0.0.1' and campaign_id = '' and call_time < "" and lead_id != '';| -- VDAD get agent: |0|update of vla table: |127.0.0.1 |UPD...
2006 Feb 09
1
Re: Help on Vicidial
...ate of vla table: |127.0.0.1 |UPDATE vicidial_live_agents set status='QUEUE',lead_id='0',uniqueid=' 1139506471.2', channel='IAX2/u32218094-1', callerid='unknown' where status = 'READY' and server_ip='127.0.0.1' and campaign_id='' and last_update_time > '19700101075955' limit 1;| |SELECT count(*) FROM vicidial_auto_calls where status = 'LIVE' and server_ip='127.0.0.1' and campaign_id = '' and call_time < "" and lead_id != '';| -- VDAD get agent: |0|update of vla table: |127.0.0.1 |UP...
2017 Nov 13
0
[PATCH RFC v3 5/6] tick: get duration of the last idle loop
...tick_dep_bits { extern void tick_nohz_idle_exit(void); extern void tick_nohz_irq_exit(void); extern ktime_t tick_nohz_get_sleep_length(void); +extern ktime_t tick_nohz_get_last_idle_length(void); extern unsigned long tick_nohz_get_idle_calls(void); extern u64 get_cpu_idle_time_us(int cpu, u64 *last_update_time); extern u64 get_cpu_iowait_time_us(int cpu, u64 *last_update_time); @@ -127,6 +128,7 @@ enum tick_dep_bits { static inline void tick_nohz_idle_enter(void) { } static inline void tick_nohz_idle_exit(void) { } +static ktime_t tick_nohz_get_last_idle_length(void) { return -1; } static inline kt...
2017 Nov 13
0
[PATCH RFC v3 5/6] tick: get duration of the last idle loop
...tick_dep_bits { extern void tick_nohz_idle_exit(void); extern void tick_nohz_irq_exit(void); extern ktime_t tick_nohz_get_sleep_length(void); +extern ktime_t tick_nohz_get_last_idle_length(void); extern unsigned long tick_nohz_get_idle_calls(void); extern u64 get_cpu_idle_time_us(int cpu, u64 *last_update_time); extern u64 get_cpu_iowait_time_us(int cpu, u64 *last_update_time); @@ -127,6 +128,7 @@ enum tick_dep_bits { static inline void tick_nohz_idle_enter(void) { } static inline void tick_nohz_idle_exit(void) { } +static ktime_t tick_nohz_get_last_idle_length(void) { return -1; } static inline kt...
2008 Feb 29
35
[RFC] PVFB: Add refresh period to XenStore parameters?
Hello, Sometimes the backend of PVFB knows that it doesn''t need permanent refresh, when the window is minimized for instance (no refresh at all), or the administration tools know that the window is thumnailed, and so a slow refresh rate is fine. Also, some users may want to tune the refresh rate according to the smoothness they would like, balanced with the CPU time that requires.
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...sible_w; - if (maxx > vs->ds->width) - maxx = vs->ds->width; + if (maxx > ds_get_width(vs->ds)) + maxx = ds_get_width(vs->ds); for (y = vs->visible_y; y < maxy; y++) { int x; @@ -791,7 +735,7 @@ vs->has_update = 0; vnc_flush(vs); vs->last_update_time = now; - vs->ds->idle = 0; + dcl->idle = 0; vs->timer_interval /= 2; if (vs->timer_interval < VNC_REFRESH_INTERVAL_BASE) @@ -806,7 +750,7 @@ vs->timer_interval = VNC_REFRESH_INTERVAL_MAX; if (now - vs->last_update_time >= VNC_MAX_UPDATE_INTERVAL) {...