Ignore:
File:
1 edited

Legend:

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

    rffa2c8ef rf019cc07  
    3535#include <stdio.h>
    3636#include <stdlib.h>
     37#include <ipc/ipc.h>
    3738#include <adt/hash_table.h>
    3839
     
    5253
    5354typedef struct {
    54         sysarg_t method;
     55        ipcarg_t method;
    5556        oper_t *oper;
    5657        link_t link;
     
    156157}
    157158
    158 static void proto_struct_init(proto_t *proto, const char *name)
     159static void proto_struct_init(proto_t *proto, char *name)
    159160{
    160161        proto->name = name;
     
    163164}
    164165
    165 proto_t *proto_new(const char *name)
     166proto_t *proto_new(char *name)
    166167{
    167168        proto_t *p;
     
    205206}
    206207
    207 static void oper_struct_init(oper_t *oper, const char *name)
     208static void oper_struct_init(oper_t *oper, char *name)
    208209{
    209210        oper->name = name;
    210211}
    211212
    212 oper_t *oper_new(const char *name, int argc, val_type_t *arg_types,
     213oper_t *oper_new(char *name, int argc, val_type_t *arg_types,
    213214    val_type_t rv_type, int respc, val_type_t *resp_types)
    214215{
Note: See TracChangeset for help on using the changeset viewer.