각각 디렉토리에 해당하는 소스가 포함되어 있다. 즉, /bin 디렉토리에 들어있는 바이너리들은 /usr/src/bin/ 아래에 해당 바이너리의 이름과 같은 디렉토리명으로 그 소스가 존재하게 된다.
Linux의 core-utility 소스와 FreeBSD의 core-utility 소스를 비교해보면, Linux는 많은 플랫폼의 다른 system call들을 지원하기 위해서 system call을 wrapper로 감싸 별도의 라이브러리 형식을 만들었던 반면, FreeBSD의 core-utility 소스는 아주 간단하게 되어 있다. 다른 플랫폼을 위한 #define 구문도 없다. (또한 소스도 매우 보기가 쉽다.)
FreeBSD의 df는 main 함수에서(부터!) getmntinfo라는 system call을 호출한다. 그런데 이 system call을 man 페이지로 보다보면 statfs에 대한 내용이 참조로 존재하고, Linux에서 보았던 것과 유사한 statfs 라는 system call도 역시 존재하고 있다는 것을 알 수 있다. 그러니까 FreeBSD에서는, getmntinfo는 현재 mount되어 있는 모든 file system에 관한 정보를 되돌려주고, statfs는 입력한 한개의 path에 관련된 정보를 되돌려준다고 하겠다.
statfs 구조체의 모양도 조금 다르다.
/* * filesystem statistics */
#define MFSNAMELEN 16 /* length of type name including null */ #define MNAMELEN 88 /* size of on/from name bufs */ #define STATFS_VERSION 0x20030518 /* current version number */
struct statfs { uint32_t f_version; /* structure version number */ uint32_t f_type; /* type of filesystem */ uint64_t f_flags; /* copy of mount exported flags */ uint64_t f_bsize; /* filesystem fragment size */ uint64_t f_iosize; /* optimal transfer block size */ uint64_t f_blocks; /* total data blocks in filesystem */ uint64_t f_bfree; /* free blocks in filesystem */ int64_t f_bavail; /* free blocks avail to non-superuser */ uint64_t f_files; /* total file nodes in filesystem */ int64_t f_ffree; /* free nodes avail to non-superuser */ uint64_t f_syncwrites; /* count of sync writes since mount */ uint64_t f_asyncwrites; /* count of async writes since mount */ uint64_t f_syncreads; /* count of sync reads since mount */ uint64_t f_asyncreads; /* count of async reads since mount */ uint64_t f_spare[10]; /* unused spare */ uint32_t f_namemax; /* maximum filename length */ uid_t f_owner; /* user that mounted the filesystem */ fsid_t f_fsid; /* filesystem id */ char f_charspare[80]; /* spare string space */ char f_fstypename[MFSNAMELEN]; /* filesystem type name */ char f_mntfromname[MNAMELEN]; /* mounted filesystem */ char f_mntonname[MNAMELEN]; /* directory on which mounted */ };
statfs나 getmntinfo 의 system call의 결과는 편집되지 않고 바로 계산된다. 그러니,