Changeset 258
- Timestamp:
- Oct 31, 2009, 9:42:58 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r257 r258 1 1 2.6.0: 2 * don't use statvfs() for process checking on FreeBSD 2 3 * fix bug with parallel compilation of cutest in Makefile 3 4 * sh_mem.c: fix deadlock in debug-only code -
trunk/src/sh_processcheck.c
r257 r258 727 727 DIR * dir; 728 728 int retval; 729 #if def HAVE_STATVFS729 #if defined(HAVE_STATVFS) && !defined(__FreeBSD__) 730 730 struct statvfs vfsbuf; 731 731 #endif … … 807 807 ++need_checks; 808 808 809 #if def HAVE_STATVFS809 #if defined(HAVE_STATVFS) && !defined(__FreeBSD__) 810 810 do { 811 811 retval = statvfs (path, &vfsbuf);
Note:
See TracChangeset
for help on using the changeset viewer.