Changeset 8e16454 in mainline for uspace/app/tmon/resolve.c
- Timestamp:
- 2017-12-27T16:46:27Z (7 years ago)
- 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)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tmon/resolve.c
r59958992 r8e16454 44 44 #define NAME "tmon" 45 45 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 */ 46 51 int tmon_resolve_default(devman_handle_t *fun) 47 52 { … … 79 84 } 80 85 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 */ 81 92 int tmon_resolve_named(const char *dev_path, devman_handle_t *fun) 82 93 {
Note:
See TracChangeset
for help on using the changeset viewer.