The OpenNET Project / Index page

[ новости /+++ | форум | теги | ]

Интерактивная система просмотра системных руководств (man-ов)

 ТемаНаборКатегория 
 
 [Cписок руководств | Печать]

syscall (2)
  • syscall (2) ( FreeBSD man: Системные вызовы )
  • syscall (2) ( Русские man: Системные вызовы )
  • >> syscall (2) ( Linux man: Системные вызовы )
  • syscall (3) ( Solaris man: Библиотечные вызовы )
  • Ключ syscall обнаружен в базе ключевых слов.
  •  

    NAME

    syscall - indirect system call
     
    

    SYNOPSIS

    #define _GNU_SOURCE        /* or _BSD_SOURCE or _SVID_SOURCE */
    #include <unistd.h>
    #include <sys/syscall.h>   /* For SYS_xxx definitions */
    
    int syscall(int number, ...);
    
     

    DESCRIPTION

    syscall() performs the system call whose assembly language interface has the specified number with the specified arguments. Symbolic constants for system calls can be found in the header file <sys/syscall.h>.  

    RETURN VALUE

    The return value is defined by the system call being invoked. In general, a 0 return value indicates success. A -1 return value indicates an error, and an error code is stored in errno.  

    NOTES

    syscall() first appeared in 4BSD.  

    EXAMPLE

    #define _GNU_SOURCE
    #include <unistd.h>
    #include <sys/syscall.h>
    #include <sys/types.h>
    
    int
    main(int argc, char *argv[])
    {
        pid_t tid;
    
        tid = syscall(SYS_gettid);
    }
    
     

    SEE ALSO

    _syscall(2), intro(2), syscalls(2)  

    COLOPHON

    This page is part of release 3.14 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/.


     

    Index

    NAME
    SYNOPSIS
    DESCRIPTION
    RETURN VALUE
    NOTES
    EXAMPLE
    SEE ALSO
    COLOPHON


    Поиск по тексту MAN-ов: 




    Партнёры:
    PostgresPro
    Inferno Solutions
    Hosting by Hoster.ru
    Хостинг:

    Закладки на сайте
    Проследить за страницей
    Created 1996-2024 by Maxim Chirkov
    Добавить, Поддержать, Вебмастеру