Ignore:
Timestamp:
2011-05-12T16:49:44Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f36787d7
Parents:
e80329d6 (diff), 750636a (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.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/net/include/adt/module_map.h

    re80329d6 rb5e68c8  
    4848typedef struct module_struct module_t;
    4949
    50 /** Type definition of the module structure pointer.
    51  * @see module_struct
    52  */
    53 typedef module_t *module_ref;
    54 
    5550/** Module map.
    5651 * Sorted by module names.
     
    7065        int usage;
    7166        /** Module name. */
    72         const char *name;
     67        const uint8_t *name;
    7368        /** Module full path filename. */
    74         const char *filename;
     69        const uint8_t *filename;
    7570        /** Connecting function. */
    7671        connect_module_t *connect_module;
    7772};
    7873
    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 *);
     74extern int add_module(module_t **, modules_t *, const uint8_t *,
     75    const uint8_t *, services_t, task_id_t, connect_module_t *);
     76extern module_t *get_running_module(modules_t *, uint8_t *);
     77extern task_id_t net_spawn(const uint8_t *);
    8378
    8479#endif
Note: See TracChangeset for help on using the changeset viewer.