Changeset ab936440 in mainline for kernel/generic/src/sysinfo/sysinfo.c
- Timestamp:
- 2019-02-12T20:42:42Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f31ca47
- Parents:
- 7f7817a9 (diff), 4805495 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Matthieu Riolo <matthieu.riolo@…> (2019-02-12 20:26:18)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-02-12 20:42:42)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/sysinfo/sysinfo.c
r7f7817a9 rab936440 62 62 * 63 63 */ 64 NO_TRACE static errno_t sysinfo_item_constructor(void *obj, unsigned int kmflag)64 _NO_TRACE static errno_t sysinfo_item_constructor(void *obj, unsigned int kmflag) 65 65 { 66 66 sysinfo_item_t *item = (sysinfo_item_t *) obj; … … 82 82 * 83 83 */ 84 NO_TRACE static size_t sysinfo_item_destructor(void *obj)84 _NO_TRACE static size_t sysinfo_item_destructor(void *obj) 85 85 { 86 86 sysinfo_item_t *item = (sysinfo_item_t *) obj; … … 124 124 * 125 125 */ 126 NO_TRACE static sysinfo_item_t *sysinfo_find_item(const char *name,126 _NO_TRACE static sysinfo_item_t *sysinfo_find_item(const char *name, 127 127 sysinfo_item_t *subtree, sysinfo_return_t **ret, bool dry_run) 128 128 { … … 190 190 * 191 191 */ 192 NO_TRACE static sysinfo_item_t *sysinfo_create_path(const char *name,192 _NO_TRACE static sysinfo_item_t *sysinfo_create_path(const char *name, 193 193 sysinfo_item_t **psubtree) 194 194 { … … 508 508 * 509 509 */ 510 NO_TRACE static void sysinfo_indent(size_t spaces)510 _NO_TRACE static void sysinfo_indent(size_t spaces) 511 511 { 512 512 for (size_t i = 0; i < spaces; i++) … … 522 522 * 523 523 */ 524 NO_TRACE static void sysinfo_dump_internal(sysinfo_item_t *root, size_t spaces)524 _NO_TRACE static void sysinfo_dump_internal(sysinfo_item_t *root, size_t spaces) 525 525 { 526 526 /* Walk all siblings */ … … 622 622 * 623 623 */ 624 NO_TRACE static sysinfo_return_t sysinfo_get_item(const char *name,624 _NO_TRACE static sysinfo_return_t sysinfo_get_item(const char *name, 625 625 sysinfo_item_t **root, bool dry_run) 626 626 { … … 677 677 * 678 678 */ 679 NO_TRACE static sysinfo_return_t sysinfo_get_item_uspace(void *ptr, size_t size,679 _NO_TRACE static sysinfo_return_t sysinfo_get_item_uspace(void *ptr, size_t size, 680 680 bool dry_run) 681 681 { … … 720 720 * 721 721 */ 722 NO_TRACE static sysinfo_return_t sysinfo_get_keys(const char *name,722 _NO_TRACE static sysinfo_return_t sysinfo_get_keys(const char *name, 723 723 sysinfo_item_t **root, bool dry_run) 724 724 { … … 786 786 * 787 787 */ 788 NO_TRACE static sysinfo_return_t sysinfo_get_keys_uspace(void *ptr, size_t size,788 _NO_TRACE static sysinfo_return_t sysinfo_get_keys_uspace(void *ptr, size_t size, 789 789 bool dry_run) 790 790 {
Note:
See TracChangeset
for help on using the changeset viewer.