internal ArchINode(int fd, uint size, int helperPid, INodeKind kind) : base(kind) { this.fd = fd; this.ArchInodeSize = size; this.helperPid = helperPid; }
internal GenericINode(INodeKind kind) { this.kind = kind; }
internal AlienSharedMemoryINode(int linux_fd, int helperPid, INodeKind kind) : base(linux_fd, 0, helperPid, kind) { }