fuse_kafka
src/context.c
00001 #ifndef _FUSE_H_
00002 #define _FUSE_H_
00003 struct fuse_context {
00004     int uid;
00005     int gid;
00006     int pid;
00007     void *private_data;
00008 };
00009 struct fuse_context context;
00010 struct fuse_context* fuse_get_context()
00011 {
00012     return &context;
00013 }
00014 #endif
 All Data Structures Files Functions Variables Defines