On Tue, 11 Jun 2002, guy keren <[EMAIL PROTECTED]> wrote: > for mode changing, there is 'fchmod'. for exec, there is 'fexecv'. but > there is no 'funlink', i'm afraid.
For good reasons: f* is things that are kept in the inode, which is reproducable from the fd. The *name* however, is not unique, and might not even exist (if, for example, it is removed after we have the file open). Do note that testsuites are not the same as production programs: they can and should make the assumption that the directory they create for test bed is they own play ground, and it is not so bad if they do not respond to abnormal termination badly (just remove the directory on the beginning of the test suite) ================================================================= To unsubscribe, send mail to [EMAIL PROTECTED] with the word "unsubscribe" in the message body, e.g., run the command echo unsubscribe | mail [EMAIL PROTECTED]