Changeset 09ab0a9a in mainline for uspace/app/trace
- Timestamp:
- 2018-09-13T12:05:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cc74cb5
- Parents:
- b2aaaa0
- git-author:
- Jiri Svoboda <jiri@…> (2018-09-13 07:09:46)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-09-13 12:05:53)
- Location:
- uspace/app/trace
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/ipcp.c
rb2aaaa0 r09ab0a9a 72 72 proto_t *proto_unknown; /**< Protocol with no known methods. */ 73 73 74 75 74 static size_t pending_call_key_hash(void *key) 76 75 { … … 101 100 }; 102 101 103 104 102 void ipcp_connection_set(cap_phone_handle_t phone, int server, proto_t *proto) 105 103 { … … 201 199 args[1], args[2], args[3], args[4], args[5]); 202 200 } 203 204 201 205 202 if ((display_mask & DM_USER) != 0) { -
uspace/app/trace/proto.c
rb2aaaa0 r09ab0a9a 40 40 #include "proto.h" 41 41 42 43 42 /* Maps service number to protocol */ 44 43 static hash_table_t srv_proto; … … 83 82 }; 84 83 85 86 84 static size_t method_oper_key_hash(void *key) 87 85 { … … 109 107 }; 110 108 111 112 109 void proto_init(void) 113 110 { -
uspace/app/trace/proto.h
rb2aaaa0 r09ab0a9a 62 62 } proto_t; 63 63 64 65 64 extern void proto_init(void); 66 65 extern void proto_cleanup(void); -
uspace/app/trace/trace.c
rb2aaaa0 r09ab0a9a 142 142 } 143 143 144 145 144 static errno_t connect_task(task_id_t task_id) 146 145 { … … 272 271 } 273 272 } 274 275 273 276 274 static void print_sc_retval(sysarg_t retval, val_type_t val_type)
Note:
See TracChangeset
for help on using the changeset viewer.