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