Changeset 04803bf in mainline for uspace/app/trace/proto.c
- Timestamp:
- 2011-03-21T22:00:17Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 143932e3
- Parents:
- b50b5af2 (diff), 7308e84 (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. - File:
-
- 1 edited
-
uspace/app/trace/proto.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/proto.c
rb50b5af2 r04803bf 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.
