Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства является частью версии 5.0 Инструментов XCode

Получить эти инструменты:

Если Вы выполняете версию Инструментов XCode кроме 5,0, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.




GETFSSTAT(2)                BSD System Calls Manual               GETFSSTAT(2)

NAME
     getfsstat -- get list of all mounted file systems

SYNOPSIS
     #include <sys/param.h>
     #include <sys/ucred.h>
     #include <sys/mount.h>

     int
     getfsstat(struct statfs *buf, int bufsize, int flags);

TRANSITIIONAL SYNOPSIS (NOW DEPRECATED)
     int
     getfsstat64(struct statfs64 *buf, int bufsize, int flags);

DESCRIPTION
     The getfsstat() function returns information about all mounted file systems.  The buf argument is a
     pointer to an array of statfs structures (see statfs(2)).  As statfs(2) indicates, the structure is
     defined differently depending on whether the macro _DARWIN_FEATURE_64_BIT_INODE is defined (see stat(2)
     for more information on this macro).

     Fields that are undefined for a particular file system are set to -1.  The buffer is filled with an
     array of statfs structures, one for each mounted file system up to the size specified by bufsize.

     If buf is given as NULL, getfsstat() returns just the number of mounted file systems.

     If flags is set to MNT_NOWAIT, getfsstat() will directly return the information retained in the kernel
     to avoid delays caused by waiting for updated information from a file system that is perhaps temporar-ily temporarily
     ily unable to respond.  Some of the information returned may be out of date, however; if flags is set
     to MNT_WAIT or MNT_DWAIT instead, getfsstat() will request updated information from each mounted
     filesystem before returning.

RETURN VALUES
     Upon successful completion, the number of statfs structures is returned.  Otherwise, -1 is returned and
     the global variable errno is set to indicate the error.

ERRORS
     Getfsstat() fails if one or more of the following are true:

     [EFAULT]           The buf argument points to an invalid address.

     [EIO]              An I/O error occurred while reading from or writing to the file system.

TRANSITIONAL DESCRIPTION (NOW DEPRECATED)
     The getfsstat64() routine is equivalent to the default getfstat() (when _DARWIN_FEATURE_64_BIT_INODE is
     defined), so there is no longer any reason to use it (it will be removed in the future).

SEE ALSO
     stat(2), statfs(2), fstab(5), mount(8)

HISTORY
     The getfsstat() function first appeared in 4.4BSD.

BSD                              Oct 28, 2008                              BSD

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации со ссылками на отзыв ниже.
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API через Генератор отчетов Ошибки.
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.