1

Linuxのプロセス内で作成できる同時ブーストdeadline_timerインスタンスの最大数を知っている人はいますか? ブーストはPosixのtimer_createメソッドを使用していると思います。

4

1 に答える 1

1

Linux timer_create マンページから:

The kernel preallocates a "queued real-time signal" for each timer created
using timer_create().  Consequently, the number of timers is limited by the
RLIMIT_SIGPENDING resource limit (see setrlimit(2)).

ulimit -iRLIMIT_SIGPENDING を取得または設定するために bash で使用します。私の Ubuntu サーバーでは、その制限のデフォルトは 16382 です。

于 2012-08-10T14:47:03.430 に答える