Changes between Version 25 and Version 26 of FSDesign
- Timestamp:
- 2009-11-17T20:32:19Z (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FSDesign
v25 v26 176 176 {{{ 177 177 #include <ipc/devmap.h> 178 ... .178 ... 179 179 dev_handle_t dev_handle; 180 ... .180 ... 181 181 int dev_phone = devmap_device_connect(dev_handle, IPC_FLAG_BLOCKING); 182 182 if (dev_phone < 0) { … … 185 185 }}} 186 186 187 In most cases, the endpoint file system server will make use of the libfs library so it will have to implement the libfs operations as described below. In case of special and very simple file systems, such as DEVFS, the file system server may decide to do without libfs.