Changeset 1dff985 in mainline for uspace/app/trace/trace.c


Ignore:
Timestamp:
2017-03-03T21:32:38Z (7 years ago)
Author:
Jakub Jermar <jakub@…>
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.
Message:

Merge from lp:~zarevucky-jiri/helenos/vfs-2.5 up to revision 1926

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/trace/trace.c

    r5b46ec8 r1dff985  
    696696
    697697        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);
    700698        o = oper_new("read", 1, arg_def, V_ERRNO, 1, resp_def);
    701699        proto_add_oper(p, VFS_IN_READ, o);
     
    716714        o = oper_new("sync", 1, arg_def, V_ERRNO, 0, resp_def);
    717715        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);
    722716        o = oper_new("rename", 0, arg_def, V_ERRNO, 0, resp_def);
    723717        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);
    726718        o = oper_new("statfs", 0, arg_def, V_ERRNO, 0, resp_def);
    727719        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);
    728726
    729727        proto_register(SERVICE_VFS, p);
Note: See TracChangeset for help on using the changeset viewer.