mirror of
https://github.com/Pithikos/C-Thread-Pool
synced 2024-11-21 21:21:23 +03:00
commit
b628c3e93d
17
example.c
17
example.c
@ -13,16 +13,11 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <pthread.h>
|
||||
#include <stdint.h>
|
||||
#include "thpool.h"
|
||||
|
||||
|
||||
void task1(){
|
||||
printf("Thread #%u working on task1\n", (int)pthread_self());
|
||||
}
|
||||
|
||||
|
||||
void task2(){
|
||||
printf("Thread #%u working on task2\n", (int)pthread_self());
|
||||
void task(void *arg){
|
||||
printf("Thread #%u working on %d\n", (int)pthread_self(), (int) arg);
|
||||
}
|
||||
|
||||
|
||||
@ -33,11 +28,11 @@ int main(){
|
||||
|
||||
puts("Adding 40 tasks to threadpool");
|
||||
int i;
|
||||
for (i=0; i<20; i++){
|
||||
thpool_add_work(thpool, (void*)task1, NULL);
|
||||
thpool_add_work(thpool, (void*)task2, NULL);
|
||||
for (i=0; i<40; i++){
|
||||
thpool_add_work(thpool, (void*)task, (void*)(uintptr_t)i);
|
||||
};
|
||||
|
||||
thpool_wait(thpool);
|
||||
puts("Killing threadpool");
|
||||
thpool_destroy(thpool);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user