Re: [Cachecc1-list] broken symbolic links in CACHECC1_DIR normal?
Brought to you by:
bpc
From: Benoit Poulot-C. <bp...@tu...> - 2004-04-21 09:51:01
|
Hi Gavin, > After deleting all files in the cachedir, I compiled cachecc1. > Thus, the contents of the cachedir relate only to cachecc1. > There are two broken symbolic links in cachecc1's cachedir. > Is this normal (maybe associated with not using IGNOREWARNINGS), > or should I investigate further? Yes, it is normal. cachecc1 use (danglink) symbolic links to store short data, for two reasons : 1) if it is short enough, it will be stored in the inode (it may depend on the filesystem) and save space, and time... 2) to read it, one syscall (readlink) is enough. It is faster than 3 (open+read+close). -- Benoit |