Changeset 334 for branches/1.2/mmap.c
- Timestamp:
- 12/17/2006 04:11:44 AM (6 years ago)
- Files:
-
- 1 modified
-
branches/1.2/mmap.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/mmap.c
r302 r334 184 184 if (strncmp(shm->name, "/dev", 4) == 0) { 185 185 perror(shm->name); 186 errstr = "Cannot open file set by xcache.mmap_path ";186 errstr = "Cannot open file set by xcache.mmap_path, check the xcache.size/var_size against system limitation"; 187 187 goto err; 188 188 } … … 191 191 if (fd == -1) { 192 192 perror(shm->name); 193 errstr = "Cannot open or create file set by xcache.mmap_path ";193 errstr = "Cannot open or create file set by xcache.mmap_path, check the path permission or check xcache.size/var_size against system limitation"; 194 194 goto err; 195 195 }

