diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2011-01-10 21:04:17 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2011-01-10 21:04:17 +0000 |
| commit | 2ba3f84ab559da02a11aa000b3cecb3b3668af61 (patch) | |
| tree | 266f450b512f607ec54d54af4fa8c13fdbe7ef91 /src/tools/myriadfs.cpp | |
| parent | ea18007633b31901f2ae275cc0576c3f7ce99fc9 (diff) | |
| parent | 3611f253f6fdfa4954d374ab85ddaa7f799c130c (diff) | |
| download | libbu++-2ba3f84ab559da02a11aa000b3cecb3b3668af61.tar.gz libbu++-2ba3f84ab559da02a11aa000b3cecb3b3668af61.tar.bz2 libbu++-2ba3f84ab559da02a11aa000b3cecb3b3668af61.tar.xz libbu++-2ba3f84ab559da02a11aa000b3cecb3b3668af61.zip | |
Merged in the core branch. This is a major update that fixes many things, and
changes many others, including source files that were deleted and renamed.
Before doing this update, I reccomend a full clean, or even a fresh checkout.
Things to note, most outstanding about this update:
- Bu::Socket was changed to Bu::TcpSocket and the default mode is blocking.
- All templatized container classes are SharedCore now, which is good, but
SharedCore is inherently non-reentrant safe. However, all SharedCore classes
have a "clone" function that return a non-shared copy of the object, safe for
passing into a reentrant safe function accessing shared memory.
Diffstat (limited to '')
| -rw-r--r-- | src/tools/myriadfs.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/tools/myriadfs.cpp b/src/tools/myriadfs.cpp new file mode 100644 index 0000000..66955a5 --- /dev/null +++ b/src/tools/myriadfs.cpp | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | #define FUSE_USE_VERSION 26 | ||
| 2 | |||
| 3 | #include <fuse.h> | ||
| 4 | |||
| 5 | #include <string.h> | ||
| 6 | |||
| 7 | extern "C" { | ||
| 8 | static int myriadfs_getattr( const char *sPath, struct stat *stbuf ) | ||
| 9 | { | ||
| 10 | |||
| 11 | } | ||
| 12 | |||
| 13 | static int myriadfs_readdir( const char *sPath, void *buf, | ||
| 14 | fuse_fill_dir_t filler, off_t offset, struct fuse_file_info *fi ) | ||
| 15 | { | ||
| 16 | } | ||
| 17 | |||
| 18 | static int myriadfs_open( const char *sPath, struct fuse_file_info *fi ) | ||
| 19 | { | ||
| 20 | } | ||
| 21 | |||
| 22 | static int myriadfs_read( const char *sPath, char *buf, size_t iSize, | ||
| 23 | off_t iOffset, struct fuse_file_info *fi ) | ||
| 24 | { | ||
| 25 | } | ||
| 26 | |||
| 27 | static struct fuse_operations myriadfs_oper; | ||
| 28 | |||
| 29 | int main( int argc, char *argv[] ) | ||
| 30 | { | ||
| 31 | memset( &myriadfs_oper, sizeof(myriadfs_oper), 0 ); | ||
| 32 | myriadfs_oper.getattr = myriadfs_getattr; | ||
| 33 | myriadfs_oper.readdir = myriadfs_readdir; | ||
| 34 | myriadfs_oper.open = myriadfs_open; | ||
| 35 | myriadfs_oper.read = myriadfs_read; | ||
| 36 | return fuse_main( argc, argv, &myriadfs_oper, NULL ); | ||
| 37 | } | ||
| 38 | } | ||
