コード例 #1
0
ファイル: mk_server.c プロジェクト: ankitku/monkey
/* Here we launch the worker threads to attend clients */
void mk_server_launch_workers()
{
    int i;

    /* Launch workers */
    for (i = 0; i < config->workers; i++) {
        mk_sched_launch_thread(config->worker_capacity);
    }
}
コード例 #2
0
ファイル: mk_server.c プロジェクト: alepharchives/monkey
/* Here we launch the worker threads to attend clients */
void mk_server_launch_workers()
{
    int i;
    pthread_t skip;

    /* Launch workers */
    for (i = 0; i < config->workers; i++) {
        mk_sched_launch_thread(config->worker_capacity, &skip, NULL);
    }
}