"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "chironfs-1.1.1/src/chironoper.h" of archive chironfs-1.1.1.tar.gz:


As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
    1 // to avoid the initialization from incompatible pointer type message on the .init line...
    2 
    3 #if defined __GNUC__
    4 #pragma GCC system_header
    5 #elif defined __SUNPRO_CC
    6 #pragma disable_warn
    7 #endif
    8 
    9 
   10 static struct fuse_operations chiron_oper = {
   11     .destroy      = chiron_destroy,
   12     .init         = chiron_init,
   13     .getattr      = chiron_getattr,
   14     .access       = chiron_access,
   15     .readlink     = chiron_readlink,
   16     .readdir      = chiron_readdir,
   17     .mknod        = chiron_mknod,
   18     .mkdir        = chiron_mkdir,
   19     .symlink      = chiron_symlink,
   20     .unlink       = chiron_unlink,
   21     .rmdir        = chiron_rmdir,
   22     .rename       = chiron_rename,
   23     .link         = chiron_link,
   24     .chmod        = chiron_chmod,
   25     .chown        = chiron_chown,
   26     .truncate     = chiron_truncate,
   27     .utime        = chiron_utime,
   28     .open         = chiron_open,
   29     .read         = chiron_read,
   30     .write        = chiron_write,
   31     .statfs       = chiron_statfs,
   32     .release      = chiron_release,
   33     .fsync        = chiron_fsync,
   34     .flush        = chiron_flush,
   35 #ifdef HAVE_SETXATTR
   36     .setxattr     = chiron_setxattr,
   37     .getxattr     = chiron_getxattr,
   38     .listxattr    = chiron_listxattr,
   39     .removexattr  = chiron_removexattr,
   40 #endif
   41 };
   42 
   43 #if defined __SUNPRO_CC
   44 #pragma enable_warn
   45 #endif