/* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2010-2011 Université de Bordeaux 1 * * StarPU is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or (at * your option) any later version. * * StarPU is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU Lesser General Public License in COPYING.LGPL for more details. */ #include void starpu_task_list_init(struct starpu_task_list *list) { list->head = NULL; list->tail = NULL; } void starpu_task_list_push_front(struct starpu_task_list *list, struct starpu_task *task) { if (list->tail == NULL) { list->tail = task; } else { list->head->prev = task; } task->prev = NULL; task->next = list->head; list->head = task; } void starpu_task_list_push_back(struct starpu_task_list *list, struct starpu_task *task) { if (list->head == NULL) { list->head = task; } else { list->tail->next = task; } task->next = NULL; task->prev = list->tail; list->tail = task; } struct starpu_task *starpu_task_list_front(struct starpu_task_list *list) { return list->head; } struct starpu_task *starpu_task_list_back(struct starpu_task_list *list) { return list->tail; } int starpu_task_list_empty(struct starpu_task_list *list) { return (list->head == NULL); } void starpu_task_list_erase(struct starpu_task_list *list, struct starpu_task *task) { struct starpu_task *p = task->prev; if (p) { p->next = task->next; } else { list->head = task->next; } if (task->next) { task->next->prev = p; } else { list->tail = p; } task->prev = NULL; task->next = NULL; } struct starpu_task *starpu_task_list_pop_front(struct starpu_task_list *list) { struct starpu_task *task = list->head; if (task) starpu_task_list_erase(list, task); return task; } struct starpu_task *starpu_task_list_pop_back(struct starpu_task_list *list) { struct starpu_task *task = list->tail; if (task) starpu_task_list_erase(list, task); return task; } struct starpu_task *starpu_task_list_begin(struct starpu_task_list *list) { return list->head; } struct starpu_task *starpu_task_list_end(struct starpu_task_list *list __attribute__ ((unused))) { return NULL; } struct starpu_task *starpu_task_list_next(struct starpu_task *task) { return task->next; }