给Linux内核添加5个新的系统调用以便支持类似NTFS的流
£流式文件系统
£给Linux内核添加5个新的系统调用以便支持类似NTFS的流。
£creatStream(int fd, char* streamName);
£deleteStream(int fd, char *streamName);
£writeStream(int fd, char* streamName, char *buf, int size);
£readStream(int fd, char* streamName, char* buf, int size);
£listStreams(int fd, char** streamNames
如何 实现这五个调用
谢谢!