Changeset ff8c87c in mainline for uspace/app/trace/trace.c


Ignore:
Timestamp:
2013-07-24T22:51:59Z (11 years ago)
Author:
Ji?? Z?rev?cky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ed9cb6
Parents:
9b48c06
Message:

Remove VFS_IN_OPEN from the server and fix trace.

File:
1 edited

Legend:

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

    r9b48c06 rff8c87c  
    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);
     
    724722        o = oper_new("stat", 0, arg_def, V_ERRNO, 0, resp_def);
    725723        proto_add_oper(p, VFS_IN_STAT, o);
     724        o = oper_new("walk", 3, arg_def, V_INT_ERRNO, 0, resp_def);
     725        proto_add_oper(p, VFS_IN_WALK, o);
     726        o = oper_new("open2", 2, arg_def, V_ERRNO, 0, resp_def);
     727        proto_add_oper(p, VFS_IN_OPEN2, o);
    726728
    727729        proto_register(SERVICE_VFS, p);
Note: See TracChangeset for help on using the changeset viewer.