]> git.wh0rd.org - fontconfig.git/commitdiff
Comment about mmaping cache files was misleading.
authorKeith Packard <keithp@koto.keithp.com>
Thu, 18 Oct 2007 11:29:13 +0000 (04:29 -0700)
committerKeith Packard <keithp@koto.keithp.com>
Thu, 18 Oct 2007 11:29:13 +0000 (04:29 -0700)
src/fccache.c

index 42c70821748819cd7dbcdd932aed2c1884d24907..a6b532fa118c148c7eb80b49bf362941e2f79da4 100644 (file)
@@ -454,7 +454,8 @@ FcDirCacheMapFd (int fd, struct stat *fd_stat, struct stat *dir_stat)
     if (cache)
        return cache;
     /*
-     * For small cache files, just read them into memory
+     * Lage cache files are mmap'ed, smaller cache files are read. This
+     * balances the system cost of mmap against per-process memory usage.
      */
     if (fd_stat->st_size >= FC_CACHE_MIN_MMAP)
     {