Subversion Repositories HelenOS

Rev

Rev 1888 | Rev 2071 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1888 Rev 2004
Line 73... Line 73...
73
typedef struct sysinfo_rettype {
73
typedef struct sysinfo_rettype {
74
    unative_t val;
74
    unative_t val;
75
    unative_t valid;
75
    unative_t valid;
76
} sysinfo_rettype_t;
76
} sysinfo_rettype_t;
77
 
77
 
78
void sysinfo_set_item_val(const char *name,sysinfo_item_t **root,unative_t val);
78
void sysinfo_set_item_val(const char *name, sysinfo_item_t **root, unative_t val);
79
void sysinfo_dump(sysinfo_item_t **root,int depth);
79
void sysinfo_dump(sysinfo_item_t **root, int depth);
80
void sysinfo_set_item_function(const char *name,sysinfo_item_t **root,sysinfo_val_fn_t fn);
80
void sysinfo_set_item_function(const char *name, sysinfo_item_t **root, sysinfo_val_fn_t fn);
81
void sysinfo_set_item_undefined(const char *name,sysinfo_item_t **root);
81
void sysinfo_set_item_undefined(const char *name, sysinfo_item_t **root);
82
 
82
 
83
sysinfo_rettype_t sysinfo_get_val(const char *name,sysinfo_item_t **root);
83
sysinfo_rettype_t sysinfo_get_val(const char *name, sysinfo_item_t **root);
84
 
84
 
85
unative_t sys_sysinfo_valid(unative_t ptr,unative_t len);
85
unative_t sys_sysinfo_valid(unative_t ptr, unative_t len);
86
unative_t sys_sysinfo_value(unative_t ptr,unative_t len);
86
unative_t sys_sysinfo_value(unative_t ptr, unative_t len);
87
 
87
 
88
#endif
88
#endif
89
 
89
 
90
/** @}
90
/** @}
91
 */
91
 */