From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Mon, 28 Feb 2000 13:07:00 -0500 From: rob pike rob@plan9.bell-labs.com Subject: [9fans] Re: 9p question Topicbox-Message-UUID: 9e872a20-eac8-11e9-9e20-41e7f4b1d025 Message-ID: <20000228180700.rtQgSQDgiYtAASkckPnnwqIkKgGxRSQ8uHxhoqe_ti8@z> The Topen message generates a permission check and enables I/O. Before the open, you may not read or write on the fid. There is no close (well, there is, but it's called clunk) because you must dispose of fids that have not been Topened, so it seemed that Tclose would be the wrong name for the operation. The manual says somewhere I believe, and the code says somewhere I know, that once a fid is opened, it cannot be walked or cloned further. This avoids some difficult implementation problems for the servers. -rob