Changeset 2bd04b2 in mainline
- Timestamp:
- 2017-12-15T23:59:25Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0f816af6
- Parents:
- 73b0773
- Location:
- uspace/app/tmon
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tmon/Makefile
r73b0773 r2bd04b2 13 13 # documentation and/or other materials provided with the distribution. 14 14 # - The name of the author may not be used to endorse or promote products 15 # derived from th is software without specific prior written permission.15 # derived from thgis software without specific prior written permission. 16 16 # 17 17 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR … … 34 34 SOURCES = \ 35 35 main.c\ 36 list.c 36 list.c\ 37 test.c 37 38 38 39 include $(USPACE_PREFIX)/Makefile.common -
uspace/app/tmon/commands.h
r73b0773 r2bd04b2 38 38 39 39 int tmon_list(int, char **); 40 int tmon_test_bulk(int, char **); 40 41 41 42 #endif /* TMON_COMMANDS_H_ */ -
uspace/app/tmon/list.c
r73b0773 r2bd04b2 71 71 72 72 if ((rc = loc_category_get_svcs(diag_cat, &svcs, &count))) { 73 printf(NAME ": Error getting list of host controllers.\n");73 printf(NAME ": Error getting list of diagnostic devices.\n"); 74 74 return 1; 75 75 } -
uspace/app/tmon/main.c
r73b0773 r2bd04b2 56 56 }, 57 57 { 58 .name = "test-bulk", 59 .action = tmon_test_bulk, 60 }, 61 { 58 62 .name = NULL 59 63 }
Note:
See TracChangeset
for help on using the changeset viewer.