Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1779 → Rev 1780

/kernel/trunk/generic/src/sysinfo/sysinfo.c
167,7 → 167,7
return NULL;
}
 
void sysinfo_set_item_val(const char *name, sysinfo_item_t **root, __native val)
void sysinfo_set_item_val(const char *name, sysinfo_item_t **root, unative_t val)
{
if (root == NULL)
root = &_root;
222,7 → 222,7
while (root != NULL) {
int i;
__native val = 0;
unative_t val = 0;
char *vtype = NULL;
278,7 → 278,7
return ret;
}
 
__native sys_sysinfo_valid(__native ptr, __native len)
unative_t sys_sysinfo_valid(unative_t ptr, unative_t len)
{
char *str;
sysinfo_rettype_t ret = {0, 0};
292,7 → 292,7
return ret.valid;
}
 
__native sys_sysinfo_value(__native ptr, __native len)
unative_t sys_sysinfo_value(unative_t ptr, unative_t len)
{
char *str;
sysinfo_rettype_t ret = {0, 0};