tail head cat sleep
QR code linking to this page

manページ  — RAISE

名称

raise – 現行プロセスにシグナルを送信

内容

ライブラリ

Standard C Library (libc, -lc)

書式

#include <signal.h>

int
raise(int sig);

解説

raise() 関数はシグナル sig を現行プロセスに送信します。

戻り値

The raise function returns the value 0 if successful; otherwise the value -1 is returned and the global variable errno is set to indicate the error.

エラー

raise() 関数は、エラーが発生した場合、ライブラリ関数 getpid(2)kill(2) のエラーに errno を設定します。

関連項目

kill(2)

規格

raise() 関数は、 ISO/IEC 9899:1990 ("ISO C90") に適合しています。

RAISE (3) June 4, 1993

tail head cat sleep
QR code linking to this page


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

A computer would deserve to be called intelligent if it could deceive a human into believing that it was human.
— Alan Turing