| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 | /* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2010-2012  Université de Bordeaux * * 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. */#ifndef __STARPU_TASK_LIST_H__#define __STARPU_TASK_LIST_H__#include <starpu_task.h>#include <starpu_util.h>#ifdef __cplusplusextern "C"{#endifstruct starpu_task_list{	struct starpu_task *head;	struct starpu_task *tail;};static STARPU_INLINEvoid starpu_task_list_init(struct starpu_task_list *list){	list->head = NULL;	list->tail = NULL;}static STARPU_INLINEvoid 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;}static STARPU_INLINEvoid 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;}static STARPU_INLINEstruct starpu_task *starpu_task_list_front(struct starpu_task_list *list){	return list->head;}static STARPU_INLINEstruct starpu_task *starpu_task_list_back(struct starpu_task_list *list){	return list->tail;}static STARPU_INLINEint starpu_task_list_empty(struct starpu_task_list *list){	return (list->head == NULL);}static STARPU_INLINEvoid 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;}static STARPU_INLINEstruct 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;}static STARPU_INLINEstruct 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;}static STARPU_INLINEstruct starpu_task *starpu_task_list_begin(struct starpu_task_list *list){	return list->head;}static STARPU_INLINEstruct starpu_task *starpu_task_list_end(struct starpu_task_list *list STARPU_ATTRIBUTE_UNUSED){	return NULL;}static STARPU_INLINEstruct starpu_task *starpu_task_list_next(struct starpu_task *task){	return task->next;}#ifdef __cplusplus}#endif#endif /* __STARPU_TASK_LIST_H__ */
 |