Skip to content
Snippets Groups Projects
Commit 97c96bd1 authored by Alexandru BRĂSLAŞU's avatar Alexandru BRĂSLAŞU
Browse files

Tema3SO

parent a9cdc5d4
Branches master
No related tags found
No related merge requests found
Pipeline #44362 passed
...@@ -39,10 +39,8 @@ void enqueue_task(os_threadpool_t *tp, os_task_t *t) ...@@ -39,10 +39,8 @@ void enqueue_task(os_threadpool_t *tp, os_task_t *t)
assert(t != NULL); assert(t != NULL);
/* TODO: Enqueue task to the shared task queue. Use synchronization. */ /* TODO: Enqueue task to the shared task queue. Use synchronization. */
//pthread_mutex_lock(&tp->mutexCoada);
list_add_tail(&tp->head, &t->list); list_add_tail(&tp->head, &t->list);
pthread_cond_broadcast(&tp->Wait); pthread_cond_broadcast(&tp->Wait);
//pthread_mutex_unlock(&tp->mutexCoada);
} }
/* /*
......
File deleted
...@@ -41,7 +41,6 @@ static void process_node(unsigned int idx) ...@@ -41,7 +41,6 @@ static void process_node(unsigned int idx)
sum += graph->nodes[idx]->info; sum += graph->nodes[idx]->info;
graph->visited[idx] = DONE; graph->visited[idx] = DONE;
for (unsigned int i = 0; i < graph->nodes[idx]->num_neighbours; ++i) { for (unsigned int i = 0; i < graph->nodes[idx]->num_neighbours; ++i) {
if (graph->visited[graph->nodes[idx]->neighbours[i]] == NOT_VISITED) { if (graph->visited[graph->nodes[idx]->neighbours[i]] == NOT_VISITED) {
graph->visited[graph->nodes[idx]->neighbours[i]] = PROCESSING; graph->visited[graph->nodes[idx]->neighbours[i]] = PROCESSING;
os_arg_t *arg = malloc(sizeof(*arg)); os_arg_t *arg = malloc(sizeof(*arg));
......
File deleted
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment