Skip to content

Commit

Permalink
Fix namespaces and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pouya-eghbali committed May 7, 2024
1 parent de31b4b commit fd1e914
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 100 deletions.
4 changes: 2 additions & 2 deletions include/ghostfs/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ int start_fs(char* executable, char* argmnt, std::vector<std::string> options, s
int port, std::string user, std::string token, uint8_t write_back_cache_size,
uint8_t read_ahead_cache_size, std::string cert_file);

int hello_stat(fuse_ino_t ino, int64_t fh, struct stat* stbuf);
int hello_stat(fuse_ino_t ino, struct stat* stbuf);
int ghostfs_stat(fuse_ino_t ino, int64_t fh, struct stat* stbuf);
int ghostfs_stat(fuse_ino_t ino, struct stat* stbuf);

extern std::map<uint64_t, std::string> ino_to_path;
extern std::map<std::string, uint64_t> path_to_ino;
Expand Down
5 changes: 0 additions & 5 deletions include/ghostfs/ghostfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@

namespace ghostfs {

/** Language codes to be used with the GhostFS class */

/**
* @brief A class for saying hello in multiple languages
*/
class GhostFS {
public:
/**
Expand Down
Loading

0 comments on commit fd1e914

Please sign in to comment.