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

 

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

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

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

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

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

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

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

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




GETFSENT(3)              BSD Library Functions Manual              GETFSENT(3)

NAME
     getfsent, getfsspec, getfsfile, setfsent, endfsent -- get file system descriptor file entry

LIBRARY
     Standard C Library (libc, -lc)

SYNOPSIS
     #include <fstab.h>

     struct fstab *
     getfsent(void);

     struct fstab *
     getfsspec(const char *spec);

     struct fstab *
     getfsfile(const char *file);

     int
     setfsent(void);

     void
     endfsent(void);

DESCRIPTION
     The getfsent(), getfsspec(), and getfsfile() functions each return a pointer to an object with the fol-lowing following
     lowing structure containing the broken-out fields of a line in the file system description file,
     <fstab.h>.

           struct fstab {
                   char    *fs_spec;       /* block special device name */
                   char    *fs_file;       /* file system path prefix */
                   char    *fs_vfstype;    /* File system type, ufs, nfs */
                   char    *fs_mntops;     /* Mount options ala -o */
                   char    *fs_type;       /* FSTAB_* from fs_mntops */
                   int     fs_freq;        /* dump frequency, in days */
                   int     fs_passno;      /* pass number on parallel fsck */
           };

     The fields have meanings described in fstab(5).

     The setfsent() function opens the file (closing any previously opened file) or rewinds it if it is
     already open.

     The endfsent() function closes the file.

     The getfsspec() and getfsfile() functions search the entire file (opening it if necessary) for a match-ing matching
     ing special file name or file system file name.

     For programs wishing to read the entire database, getfsent() reads the next entry (opening the file if
     necessary).

     All entries in the file with a type field equivalent to FSTAB_XX are ignored.

RETURN VALUES
     The getfsent(), getfsspec(), and getfsfile() functions return a NULL pointer on EOF or error.  The
     setfsent() function returns 0 on failure, 1 on success.  The endfsent() function returns nothing.

FILES
     /etc/fstab

SEE ALSO
     fstab(5)

HISTORY
     The getfsent() function appeared in 4.0BSD; the endfsent(), getfsfile(), getfsspec(), and setfsent()
     functions appeared in 4.3BSD.

BUGS
     The data space used by these functions is thread-specific; if future use requires the data, it should
     be copied before any subsequent calls to these functions overwrite it.

BSD                              April 7, 2003                             BSD

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

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

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