gcc 4.7.2
Apache Portable Runtime
こんにちは、
スレッドを使用して apr を使い始めています。私のプログラムは多くのスレッドを使用する予定であり、それらをより適切に制御できるようにスレッド プールを使用したいと考えています。
ただし、apr には、スレッド プールの作成に関するドキュメントはあまりありません。私は次のAPIを見てきました
/* Create the threading pool */
apr_thread_pool_create
/* Would I still need to do this, as the below api will create new thread? */
apr_thread_create
/* Or would this be better */
apr_procattr_create
/* When all finished */
apr_thread_pool_destroy
ドキュメントは、APR では非常に制限されているようです。
ご提案いただきありがとうございます。