search for: timer_interv

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

Did you mean: timer_interval
2015 Feb 10
0
[PATCH 3/6] gpllib: fix sizeof(char *) misuse
...unt)); dmi_system_reset_count(WORD(data + 0x07), - dmi->system.system_reset.reset_limit); + dmi->system.system_reset.reset_limit, + sizeof(dmi->system.system_reset.reset_limit)); dmi_system_reset_timer(WORD(data + 0x09), - dmi->system.system_reset.timer_interval); + dmi->system.system_reset.timer_interval, + sizeof(dmi->system.system_reset.timer_interval)); dmi_system_reset_timer(WORD(data + 0x0B), - dmi->system.system_reset.timeout); + dmi->system.system_reset.timeout, + sizeof(dmi->system.sy...
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.
2011 Aug 26
1
gem installation issues
.../1.8/i386-mingw32 -I/C/RailsInstal ler/Ruby1.8.7/lib/ruby/1.8/i386-mingw32 -I. -g -O2 -DFD_SETSIZE=256 -c system_timer_native.c system_timer_native.c: In function ''install_first_timer_and_save_original_configuration'': system_timer_native.c:43:22: error: storage size of ''timer_interval'' isn''t known system_timer_native.c:52:26: error: ''SIG_BLOCK'' undeclared (first use in this function) system_timer_native.c:52:26: note: each undeclared identifier is reported only once for each function it appears in system_timer_native.c:63:5: error: invalid u...
2015 Feb 10
6
[PATCH 0/6] fix some compiler warnings
These patches fix a few compiler warnings. Tested on top of commit aee0dc5565711ef5be7c30fb5fc1c5f3f98db09f Jonathan Boeing (6): Use z width specifier when printing size_t variable pxe: fix truncation warning gpllib: fix sizeof(char *) misuse hdt: fix sizeof(char *) misuse hdt: fix sizeof(char *) misuse hdt: fix sizeof(char *) misuse com32/gpllib/dmi/dmi.c | 24 +++---
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...{ + uint8_t flags; int width; int height; - void *opaque; - uint32_t *palette; - struct QEMUTimer *gui_timer; + int linesize; /* bytes per line */ + uint8_t *data; + + struct PixelFormat pf; +}; + +struct DisplayChangeListener { + int idle; uint64_t gui_timer_interval; - int idle; /* there is nothing to update (window invisible), set by vnc/sdl */ - int shared_buf; void (*dpy_update)(struct DisplayState *s, int x, int y, int w, int h); - void (*dpy_resize)(struct DisplayState *s, int w, int h); - void (*dpy_resize_shared)(struct DisplayState...
2012 Sep 19
1
[PATCH 1/1] lua: Cleaned up the dmi table structure in Lua.c32 and added all missing DMI subtables
...watchdog) + LUA_ADD_STR_S(L, system->system_reset, boot_option) + LUA_ADD_STR_S(L, system->system_reset, boot_option_on_limit) + LUA_ADD_STR_S(L, system->system_reset, reset_count) + LUA_ADD_STR_S(L, system->system_reset, reset_limit) + LUA_ADD_STR_S(L, system->system_reset, timer_interval) + LUA_ADD_STR_S(L, system->system_reset, timeout) + lua_settable(L,-3); + } - lua_pushstring(L, "system.wakeup_type"); - lua_pushstring(L, dmi.system.wakeup_type); - lua_settable(L,-3); + return 1; +} - lua_pushstring(L, "system.sku_number"); - lua_pushstring(...