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

 

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

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

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

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

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

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

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

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



Tcl_SetErrno(3)                            Tcl Library Procedures                            Tcl_SetErrno(3)



____________________________________________________________________________________________________________

NAME
       Tcl_SetErrno,  Tcl_GetErrno, Tcl_ErrnoId, Tcl_ErrnoMsg - manipulate errno to store and retrieve error
       codes

SYNOPSIS
       #include <tcl.h>

       void
       Tcl_SetErrno(errorCode)

       int
       Tcl_GetErrno()

       const char *
       Tcl_ErrnoId()

       const char *
       Tcl_ErrnoMsg(errorCode)


ARGUMENTS
       int errorCode (in)          A POSIX error code such as ENOENT.
____________________________________________________________________________________________________________


DESCRIPTION
       Tcl_SetErrno and Tcl_GetErrno provide portable access to the errno variable, which is used to  record
       a  POSIX  error  code after system calls and other operations such as Tcl_Gets.  These procedures are
       necessary because global variable accesses cannot be made across module boundaries on some platforms.

       Tcl_SetErrno sets the errno variable to the value of the errorCode argument C procedures that wish to
       return error information to their callers via errno should  call  Tcl_SetErrno  rather  than  setting
       errno directly.

       Tcl_GetErrno returns the current value of errno.  Procedures wishing to access errno should call this
       procedure instead of accessing errno directly.

       Tcl_ErrnoId and Tcl_ErrnoMsg return string representations of errno values.   Tcl_ErrnoId  returns  a
       machine-readable  textual identifier such as "EACCES" that corresponds to the current value of errno.
       Tcl_ErrnoMsg returns a human-readable string such as "permission  denied"  that  corresponds  to  the
       value  of  its  errorCode  argument.   The  errorCode  argument  is  typically  the value returned by
       Tcl_GetErrno.  The strings returned by these functions are statically allocated and the  caller  must
       not free or modify them.


KEYWORDS
       errno, error code, global variables



Tcl                                                  8.3                                     Tcl_SetErrno(3)

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

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

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