Changeset b8dbe2f in mainline
- Timestamp:
- 2013-07-31T15:36:57Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1dff985
- Parents:
- 06256b0
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/trace/trace.c
r06256b0 rb8dbe2f 57 57 #include "proto.h" 58 58 #include <ipc/services.h> 59 #include "../../srv/vfs/vfs.h"60 59 #include <ipc/console.h> 61 60 -
uspace/lib/fs/libfs.c
r06256b0 rb8dbe2f 36 36 37 37 #include "libfs.h" 38 #include "../../srv/vfs/vfs.h"39 38 #include <macros.h> 40 39 #include <errno.h> … … 46 45 #include <sys/stat.h> 47 46 #include <stdlib.h> 47 #include <fibril_synch.h> 48 48 49 49 #define on_error(rc, action) \ … … 661 661 async_answer_5(rid, fs_handle, service_id, 662 662 ops->index_get(cur), last, lsize, 663 ops->is_directory(cur) ? VFS_NODE_DIRECTORY : VFS_NODE_FILE);663 ops->is_directory(cur)); 664 664 LOG_EXIT(EOK); 665 665 } else { … … 707 707 if (!cur) { 708 708 async_answer_5(rid, fs_handle, service_id, 709 ops->index_get(par), last_next, -1, VFS_NODE_DIRECTORY);709 ops->index_get(par), last_next, -1, true); 710 710 LOG_EXIT(EOK); 711 711 goto out; … … 729 729 async_answer_5(rid, fs_handle, service_id, 730 730 ops->index_get(cur), last, lsize, 731 ops->is_directory(cur) ? VFS_NODE_DIRECTORY : VFS_NODE_FILE);731 ops->is_directory(cur)); 732 732 733 733 LOG_EXIT(EOK);
Note:
See TracChangeset
for help on using the changeset viewer.