Changeset 2bd04b2 in mainline


Ignore:
Timestamp:
2017-12-15T23:59:25Z (6 years ago)
Author:
Petr Mánek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0f816af6
Parents:
73b0773
Message:

usbdiag: tmon device resolver and stub for the bulk test

Location:
uspace/app/tmon
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tmon/Makefile

    r73b0773 r2bd04b2  
    1313#   documentation and/or other materials provided with the distribution.
    1414# - The name of the author may not be used to endorse or promote products
    15 #   derived from this software without specific prior written permission.
     15#   derived from thgis software without specific prior written permission.
    1616#
    1717# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     
    3434SOURCES = \
    3535        main.c\
    36         list.c
     36        list.c\
     37        test.c
    3738
    3839include $(USPACE_PREFIX)/Makefile.common
  • uspace/app/tmon/commands.h

    r73b0773 r2bd04b2  
    3838
    3939int tmon_list(int, char **);
     40int tmon_test_bulk(int, char **);
    4041
    4142#endif /* TMON_COMMANDS_H_ */
  • uspace/app/tmon/list.c

    r73b0773 r2bd04b2  
    7171
    7272        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");
    7474                return 1;
    7575        }
  • uspace/app/tmon/main.c

    r73b0773 r2bd04b2  
    5656        },
    5757        {
     58                .name = "test-bulk",
     59                .action = tmon_test_bulk,
     60        },
     61        {
    5862                .name = NULL
    5963        }
Note: See TracChangeset for help on using the changeset viewer.