(self, fd)
| 6 | def ioctl(self, fd, req, argp): raise NotImplementedError() |
| 7 | def mmap(self, st, sz, prot, flags, fd, off): raise NotImplementedError() |
| 8 | def close(self, fd): return 0 |
| 9 | |
| 10 | class TextFileDesc(VirtFileDesc): |
| 11 | def __init__(self, fd, text): |
no outgoing calls