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

 

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

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

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

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

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

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

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

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




GETLASTLOGX(3)           BSD Library Functions Manual           GETLASTLOGX(3)

NAME
     getlastlogx, getlastlogxbyname, getutmp, getutmpx, utmpxname -- user accounting database functions

SYNOPSIS
     #include <utmpx.h>

     struct lastlogx *
     getlastlogx(uid_t uid, struct lastlogx *ll);

     struct lastlogx *
     getlastlogxbyname(const char *name, struct lastlogx *ll);

     void
     getutmp(const struct utmpx *ux, struct utmp *u);

     void
     getutmpx(const struct utmp *u, struct utmpx *ux);

     int
     utmpxname(const char *fname);

DESCRIPTION
     The getlastlogx() function looks up the entry for the user with user id uid and returns it in ll.  If
     the provided ll is NULL, the necessary space will be allocated by getlastlogx() and should be free()d
     by the caller.  The getlastlogxbyname() function is similar to getlastlogx(), except the user name is
     passed.

     getutmp() function fills out the entries in the struct utmp u with the data provided in the struct
     utmpx ux.  getutmpx() does the opposite, filling out the entries in the struct utmpx ux with the data
     provided in the struct utmp u, and initializing all the unknown fields to 0.  The sole exception is the
     ut_type field, which will be initialized to USER_PROCESS.

     A struct lastlogx is defined like this:

     struct lastlogx {
             struct timeval ll_tv;           /* time entry was created */
             char ll_line[_UTX_LINESIZE];    /* tty name */
             char ll_host[_UTX_HOSTSIZE];    /* host name */
     };

     The utmpxname() function sets the default utmpx(5) database file name to fname.

RETURN VALUES
     getlastlogx() and getlastlogxbyname() return the found entry on success, or NULL if it could not open
     the database, could not find an entry matching uid or name, or could not allocate the necessary space
     (in case ll was NULL).

     utmpxname() returns 1 on success, or 0 if the supplied file name was too long or did not end with `x'.

SEE ALSO
     endutxent(3), utmpx(5)

HISTORY
     The functions getutmp(), getutmpx(), and utmpxname() first appeared in Solaris.  getlastlogx first
     appeared in NetBSD 2.0.

BSD                              Dec 26, 2005                              BSD

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

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

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