Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/trace/proto.h

    ra000878c rd9c8c81  
    4343
    4444typedef struct {
    45         const char *name;
     45        char *name;
    4646
    4747        int argc;
     
    5656typedef struct {
    5757        /** Protocol name */
    58         const char *name;
     58        char *name;
    5959
    6060        /** Maps method number to operation */
     
    7070void proto_register(int srv, proto_t *proto);
    7171proto_t *proto_get_by_srv(int srv);
    72 proto_t *proto_new(const char *name);
     72proto_t *proto_new(char *name);
    7373void proto_delete(proto_t *proto);
    7474void proto_add_oper(proto_t *proto, int method, oper_t *oper);
    7575oper_t *proto_get_oper(proto_t *proto, int method);
    7676
    77 oper_t *oper_new(const char *name, int argc, val_type_t *arg_types,
     77oper_t *oper_new(char *name, int argc, val_type_t *arg_types,
    7878    val_type_t rv_type, int respc, val_type_t *resp_types);
    7979
Note: See TracChangeset for help on using the changeset viewer.