forked from Imagelibrary/rtems
These modifications were required by hand after running the script. In some cases, the file names did not match patterns. In others, the format of the file did not match any common patterns.
20 lines
297 B
Plaintext
20 lines
297 B
Plaintext
This is a list of cases to consider when implementing a file system:
|
|
|
|
|
|
+ Given a tree of this form:
|
|
|
|
a ----- b
|
|
/
|
|
c
|
|
|
|
Where a and b are directories and c is a link to directory b. Consider
|
|
this sequence:
|
|
|
|
- rmdir a/b
|
|
- mknod c/b/x
|
|
- unlink c
|
|
|
|
|
|
|
|
|