Skip to content

not all jobs complete if not resumed #1

Description

@chenhu66

Hi subhranil,

i tried several on github, yours is sofar the best. But still an issue:
if not resumed, only a couple of jobs are done, not all;
if resumed, i got a warning: [THREADPOOL:RESM:WARNING] Pool is not suspended!
Following my main.c for reference:

void longJob(void *dummy){
volatile unsigned long long i;
// for (i = 0; i < 1000000000ULL; ++i);
printf("job done\n");
}

int main(){
uint64_t size=11;
ThreadPool *pool = createPool(size);

size=20;
for(int i = 0;i < size;i++)
	addJobToPool(pool, &longJob, NULL);

resumePool(pool);

waitToComplete(pool);
printf("all jobs completed\n");
destroyPool(pool);
printf("pool destroyed\n");

}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions