SETPROCTITLE

Section: C Library Functions (3)
Index JM Home Page

BSD mandoc
Linux NetKit (0.17)  

名前

setproctitle - プロセスのタイトルを設定する  

書式

Fd #include <stdlib.h> Ft void Fn setproctitle const char *fmt ...  

説明

Fn setproctitle は、起動しているプロセスのタイトルを設定する。 プロセスのタイトルは、プログラム名からディレクトリ部分を取り去った名前に、 コロンを挟んで fmt に指定された書式付き文字列を続けたものになる。 fmt が NULL の場合、コロンとフォーマットされた文字列は省略される。 プロセスのタイトルの長さは、2048 バイトまでに制限されている。  

プロセスのタイトルを、他の情報を含まない、プログラム名のみに設定する:
setproctitle(NULL);

プロセスのタイトルを、プログラム名・情報が書かれた文字列・ プロセス ID を続けたものに設定する:

setproctitle("foo! (%d)", getpid());
 

関連項目

ps(1), w(1), printf(3)  

履歴

Fn setproctitle は NetBSD 0.9a で初めて登場した。

関連キーワード

プロセス, SETPROCTITLE, setproctitle, タイトル, 設定, 名前, プログラム, fmt, 情報, Index

Linux マニュアル 一覧

[man1] [man2] [man3] [man4] [man5] [man6] [man7] [man8]
[a] [b] [c] [d] [e] [f] [g] [h] [i] [j] [k] [l] [m] [n] [o] [p] [q] [r] [s] [t] [u] [v] [w] [x] [y] [z]

 

Index

名前
書式
説明
関連項目
履歴

This document was created by man2html, using the manual pages.
Time: 12:08:56 GMT, June 11, 2022