Changeset 1dff985 in mainline for uspace/app/trace/trace.c
- Timestamp:
- 2017-03-03T21:32:38Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- c577a9a
- Parents:
- 5b46ec8 (diff), b8dbe2f (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
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/trace.c
r5b46ec8 r1dff985 696 696 697 697 p = proto_new("vfs"); 698 o = oper_new("open", 2, arg_def, V_INT_ERRNO, 0, resp_def);699 proto_add_oper(p, VFS_IN_OPEN, o);700 698 o = oper_new("read", 1, arg_def, V_ERRNO, 1, resp_def); 701 699 proto_add_oper(p, VFS_IN_READ, o); … … 716 714 o = oper_new("sync", 1, arg_def, V_ERRNO, 0, resp_def); 717 715 proto_add_oper(p, VFS_IN_SYNC, o); 718 o = oper_new("mkdir", 1, arg_def, V_ERRNO, 0, resp_def);719 proto_add_oper(p, VFS_IN_MKDIR, o);720 o = oper_new("unlink", 0, arg_def, V_ERRNO, 0, resp_def);721 proto_add_oper(p, VFS_IN_UNLINK, o);722 716 o = oper_new("rename", 0, arg_def, V_ERRNO, 0, resp_def); 723 717 proto_add_oper(p, VFS_IN_RENAME, o); 724 o = oper_new("stat", 0, arg_def, V_ERRNO, 0, resp_def);725 proto_add_oper(p, VFS_IN_STAT, o);726 718 o = oper_new("statfs", 0, arg_def, V_ERRNO, 0, resp_def); 727 719 proto_add_oper(p, VFS_IN_STATFS, o); 720 o = oper_new("walk", 2, arg_def, V_INT_ERRNO, 0, resp_def); 721 proto_add_oper(p, VFS_IN_WALK, o); 722 o = oper_new("open2", 2, arg_def, V_ERRNO, 0, resp_def); 723 proto_add_oper(p, VFS_IN_OPEN2, o); 724 o = oper_new("unlink2", 3, arg_def, V_ERRNO, 0, resp_def); 725 proto_add_oper(p, VFS_IN_UNLINK2, o); 728 726 729 727 proto_register(SERVICE_VFS, p);
Note:
See TracChangeset
for help on using the changeset viewer.