Changeset eb522e8 in mainline for uspace/lib/net/include/adt/module_map.h
- Timestamp:
- 2011-06-01T08:43:42Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8d6c1f1
- Parents:
- 9e2e715 (diff), e51a514 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/adt/module_map.h
r9e2e715 reb522e8 48 48 typedef struct module_struct module_t; 49 49 50 /** Type definition of the module structure pointer.51 * @see module_struct52 */53 typedef module_t *module_ref;54 55 50 /** Module map. 56 51 * Sorted by module names. … … 70 65 int usage; 71 66 /** Module name. */ 72 const char*name;67 const uint8_t *name; 73 68 /** Module full path filename. */ 74 const char*filename;69 const uint8_t *filename; 75 70 /** Connecting function. */ 76 71 connect_module_t *connect_module; 77 72 }; 78 73 79 extern int add_module(module_ ref *, modules_ref, const char *, const char*,80 services_t, task_id_t, connect_module_t *);81 extern module_ ref get_running_module(modules_ref, char*);82 extern task_id_t spawn(const char*);74 extern int add_module(module_t **, modules_t *, const uint8_t *, 75 const uint8_t *, services_t, task_id_t, connect_module_t *); 76 extern module_t *get_running_module(modules_t *, uint8_t *); 77 extern task_id_t net_spawn(const uint8_t *); 83 78 84 79 #endif
Note:
See TracChangeset
for help on using the changeset viewer.