Message-ID: <385B321C.4A6FC82@softhome.net> Date: Sat, 18 Dec 1999 09:05:00 +0200 From: Laurynas Biveinis X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: djgpp-workers AT delorie DOT com Subject: Re: The 5th symlink patch References: <199912171830 DOT NAA11111 AT mccoy2 DOT ECE DOT McGill DOT CA> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Reply-To: djgpp-workers AT delorie DOT com Alain Magloire wrote: > I did not follow your discussion, but some functions that comes to mind > lstat() > lchown() > symlink() > readlink() All those functions are implemented. > link() unlink() // hard links Hard links are emulated in DJGPP by copying. My implementation does not deal with them at all. > Are you detecting loops ? and returning ELOOP I am detecting too many link levels and returning EMLINK. This catches loops too. > Can you link directories ? Yes. Laurynas Biveinis