aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Unify constructors for FileGravatar Benjamin Barenblat2016-02-20
|
* Include what you useGravatar Benjamin Barenblat2016-02-20
|
* Implement open, creat, and closeGravatar Benjamin Barenblat2016-02-18
|
* Create and use RAII directory abstractionGravatar Benjamin Barenblat2016-02-18
|
* Clean up deleted copy and move constructors for FileGravatar Benjamin Barenblat2016-02-18
|
* Add nullary constructor to IoErrorGravatar Benjamin Barenblat2016-02-18
| | | | The constructor constructs an IoError based on the current errno.
* Create and use RAII file abstractionGravatar Benjamin Barenblat2016-02-18
|
* Rewrite getattr to query underlying file systemGravatar Benjamin Barenblat2016-02-13
|
* Save root file descriptor when starting upGravatar Benjamin Barenblat2016-02-13
| | | | | | Allow access to underlying file system by saving a file descriptor to the underlying directory when starting. Close the FD during FUSE’s destroy routine, though it won’t matter much.
* Update copyright noticesGravatar Benjamin Barenblat2016-02-13
| | | | | Now that all FUSE operations are in their own file, there’s no code in scoville.cc from the FUSE distribution.
* Implement enough to get ls to workGravatar Benjamin Barenblat2016-02-13
|
* Make FUSE and glog be system includesGravatar Benjamin Barenblat2016-02-13
| | | | | Prevent obnoxious error messages by making FUSE and glog be included with -isystem instead of -I.
* Link in FUSEGravatar Benjamin Barenblat2016-02-12
| | | | | Start linking FUSE and jumping into FUSE on boot. Also define a couple of trivial operations, but don’t actually do filename encoding yet.
* Initial commitGravatar Benjamin Barenblat2016-02-12
Create a utility to demonstrate scoville’s escaping scheme.