Changeset 20c071d in mainline for uspace/app/trace/trace.c


Ignore:
Timestamp:
2013-07-25T12:28:48Z (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:
d18c404
Parents:
fadc76f
Message:

Implement server side of unlink2().

File:
1 edited

Legend:

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

    rfadc76f r20c071d  
    718718        o = oper_new("rename", 0, arg_def, V_ERRNO, 0, resp_def);
    719719        proto_add_oper(p, VFS_IN_RENAME, o);
    720         o = oper_new("walk", 3, arg_def, V_INT_ERRNO, 0, resp_def);
     720        o = oper_new("walk", 2, arg_def, V_INT_ERRNO, 0, resp_def);
    721721        proto_add_oper(p, VFS_IN_WALK, o);
    722722        o = oper_new("open2", 2, arg_def, V_ERRNO, 0, resp_def);
    723723        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);
    724726
    725727        proto_register(SERVICE_VFS, p);
Note: See TracChangeset for help on using the changeset viewer.