Changes in uspace/app/trace/proto.c [f019cc07:ffa2c8ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/proto.c
rf019cc07 rffa2c8ef 35 35 #include <stdio.h> 36 36 #include <stdlib.h> 37 #include <ipc/ipc.h>38 37 #include <adt/hash_table.h> 39 38 … … 53 52 54 53 typedef struct { 55 ipcarg_t method;54 sysarg_t method; 56 55 oper_t *oper; 57 56 link_t link; … … 157 156 } 158 157 159 static void proto_struct_init(proto_t *proto, c har *name)158 static void proto_struct_init(proto_t *proto, const char *name) 160 159 { 161 160 proto->name = name; … … 164 163 } 165 164 166 proto_t *proto_new(c har *name)165 proto_t *proto_new(const char *name) 167 166 { 168 167 proto_t *p; … … 206 205 } 207 206 208 static void oper_struct_init(oper_t *oper, c har *name)207 static void oper_struct_init(oper_t *oper, const char *name) 209 208 { 210 209 oper->name = name; 211 210 } 212 211 213 oper_t *oper_new(c har *name, int argc, val_type_t *arg_types,212 oper_t *oper_new(const char *name, int argc, val_type_t *arg_types, 214 213 val_type_t rv_type, int respc, val_type_t *resp_types) 215 214 {
Note:
See TracChangeset
for help on using the changeset viewer.