Changeset af7383f in mainline for uspace/srv/vfs/vfs.c
- Timestamp:
- 2009-06-15T19:17:11Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c07af37
- Parents:
- 0ed2e0e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs.c
r0ed2e0e raf7383f 46 46 #include <adt/list.h> 47 47 #include <atomic.h> 48 #include <assert.h> 48 49 #include "vfs.h" 49 50 … … 175 176 176 177 /* 177 * Set a connectio handling function/fibril. 178 */ 179 async_set_pending(vfs_process_pending_mount); 178 * Set a connection handling function/fibril. 179 */ 180 180 async_set_client_connection(vfs_connection); 181 182 /* 183 * Add a fibril for handling pending mounts. 184 */ 185 fid_t fid = fibril_create(vfs_process_pending_mount, NULL); 186 assert(fid); 187 fibril_add_ready(fid); 181 188 182 189 /*
Note:
See TracChangeset
for help on using the changeset viewer.