tail head cat sleep
QR code linking to this page

manページ  — INSQUE

名称

insque, remque – 待ち行列に対して要素を挿入/削除する

内容

ライブラリ

Compatibility Library (libcompat, -lcompat)

書式

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


void
insque(struct qelem *elem, struct qelem *pred);

void
remque(struct qelem *elem);

解説

insque と remque 関数は時代遅れの関数です。

insque()remque() 関数は、二重リンクのリストから作られた待ち行列を 操作します。待ち行列中の各要素は "struct qelem" 形式をとる必要があります。 insque() 関数は待ち行列中の pred の直後に elem を挿入します。 remque() は待ち行列から要素 elem を削除します。

関連項目

VAX Architecture Handbook, pp. 228-235.

歴史

insque()remque() 関数は BSD 4.2 から登場しました。

INSQUE (3) December 11, 1993

tail head cat sleep
QR code linking to this page


このマニュアルページサービスについてのご意見は Ben Bullock にお知らせください。 Privacy policy.

What is this horrible fascination with Unix? The operating system of the 1960s, still gaining in popularity in the 1990s.
— Donald A. Norman