The OpenNET Project / Index page

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

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

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

insque (3)
  • >> insque (3) ( Solaris man: Библиотечные вызовы )
  • insque (3) ( FreeBSD man: Библиотечные вызовы )
  • insque (3) ( Русские man: Библиотечные вызовы )
  • insque (3) ( Linux man: Библиотечные вызовы )
  • insque (3) ( POSIX man: Библиотечные вызовы )
  •  

    NAME

    insque, remque - insert/remove element from a queue
     
    

    SYNOPSIS

    include <search.h>
    
    void insque(struct qelem *elem, struct qelem *pred);
    

    void remque(struct qelem *elem);
    

     

    DESCRIPTION

    The insque() and remque() functions manipulate queues built from doubly linked lists. Each element in the queue must be in the following form:

    struct qelem {
           struct qelem   *q_forw;
           struct qelem   *q_back;
           char           q_data[];
    };
    

    The insque() function inserts elem in a queue immediately after pred. The remque() function removes an entry elem from a queue.  

    ATTRIBUTES

    See attributes(5) for descriptions of the following attributes:

    ATTRIBUTE TYPEATTRIBUTE VALUE

    Interface StabilityStandard

    MT-Level

     

    SEE ALSO

    attributes(5), standards(5)


     

    Index

    NAME
    SYNOPSIS
    DESCRIPTION
    ATTRIBUTES
    SEE ALSO


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




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

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