Changes in kernel/generic/src/sysinfo/sysinfo.c [c6218327:7a0359b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/sysinfo/sysinfo.c
rc6218327 r7a0359b 58 58 * 59 59 */ 60 static int sysinfo_item_constructor(void *obj,int kmflag)60 NO_TRACE static int sysinfo_item_constructor(void *obj, unsigned int kmflag) 61 61 { 62 62 sysinfo_item_t *item = (sysinfo_item_t *) obj; … … 78 78 * 79 79 */ 80 static int sysinfo_item_destructor(void *obj)80 NO_TRACE static size_t sysinfo_item_destructor(void *obj) 81 81 { 82 82 sysinfo_item_t *item = (sysinfo_item_t *) obj; … … 120 120 * 121 121 */ 122 static sysinfo_item_t *sysinfo_find_item(const char *name,122 NO_TRACE static sysinfo_item_t *sysinfo_find_item(const char *name, 123 123 sysinfo_item_t *subtree, sysinfo_return_t **ret, bool dry_run) 124 124 { … … 180 180 * 181 181 */ 182 static sysinfo_item_t *sysinfo_create_path(const char *name,182 NO_TRACE static sysinfo_item_t *sysinfo_create_path(const char *name, 183 183 sysinfo_item_t **psubtree) 184 184 { … … 458 458 * 459 459 */ 460 static void sysinfo_indent(unsigned int depth)460 NO_TRACE static void sysinfo_indent(unsigned int depth) 461 461 { 462 462 unsigned int i; … … 473 473 * 474 474 */ 475 static void sysinfo_dump_internal(sysinfo_item_t *root, unsigned int depth)475 NO_TRACE static void sysinfo_dump_internal(sysinfo_item_t *root, unsigned int depth) 476 476 { 477 477 sysinfo_item_t *cur = root; … … 567 567 * 568 568 */ 569 static sysinfo_return_t sysinfo_get_item(const char *name,569 NO_TRACE static sysinfo_return_t sysinfo_get_item(const char *name, 570 570 sysinfo_item_t **root, bool dry_run) 571 571 { … … 622 622 * 623 623 */ 624 static sysinfo_return_t sysinfo_get_item_uspace(void *ptr, size_t size,624 NO_TRACE static sysinfo_return_t sysinfo_get_item_uspace(void *ptr, size_t size, 625 625 bool dry_run) 626 626 {
Note:
See TracChangeset
for help on using the changeset viewer.