search for: reset_limit

Displaying 3 results from an estimated 3 matches for "reset_limit".

Did you mean: _set_limit
2015 Feb 10
0
[PATCH 3/6] gpllib: fix sizeof(char *) misuse
...imit); dmi_system_reset_count(WORD(data + 0x05), - dmi->system.system_reset.reset_count); + dmi->system.system_reset.reset_count, + sizeof(dmi->system.system_reset.reset_count)); 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->sys...
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 +++---
2012 Sep 19
1
[PATCH 1/1] lua: Cleaned up the dmi table structure in Lua.c32 and added all missing DMI subtables
...t, status) + LUA_ADD_NUM_S(L, system->system_reset, 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_pushs...