Changeset 8e16454 in mainline for uspace/app/tmon/resolve.c


Ignore:
Timestamp:
2017-12-27T16:46:27Z (6 years ago)
Author:
Petr Manek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f4b83cc
Parents:
59958992
git-author:
Petr Manek <petr.manek@…> (2017-12-27 16:43:34)
git-committer:
Petr Manek <petr.manek@…> (2017-12-27 16:46:27)
Message:

tmon: add in-code docs and method docstrings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tmon/resolve.c

    r59958992 r8e16454  
    4444#define NAME "tmon"
    4545
     46/** Resolve a single function by its class (fail if there is more/less than 1).
     47 * @param[out] fun Resolved function handle (if found).
     48 *
     49 * @return EOK if the function was resolved successfully.
     50 */
    4651int tmon_resolve_default(devman_handle_t *fun)
    4752{
     
    7984}
    8085
     86/** Resolve a function by its name or device path.
     87 * @param[in] dev_path Name or device path (see `devman_fun_get_handle` for possible values).
     88 * @param[out] fun Resolved function handle (if found).
     89 *
     90 * @return EOK if the function was resolved successfully.
     91 */
    8192int tmon_resolve_named(const char *dev_path, devman_handle_t *fun)
    8293{
Note: See TracChangeset for help on using the changeset viewer.