| 14 | class LinkVolume : public FsVolume{ |
| 15 | public: |
| 16 | LinkVolume(FsVolume* link, char* name){ |
| 17 | strcpy(mountPointDirent.name, name); |
| 18 | mountPointDirent.node = link->mountPoint; |
| 19 | mountPointDirent.flags = link->mountPointDirent.flags; |
| 20 | mountPointDirent.node->nlink++; |
| 21 | } |
| 22 | |
| 23 | LinkVolume(FsNode* link, char* name){ |
| 24 | strcpy(mountPointDirent.name, name); |