12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010-2012 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.
- */
- #ifndef __STARPU_TASK_LIST_H__
- #define __STARPU_TASK_LIST_H__
- #include <starpu_task.h>
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- struct starpu_task_list
- {
- struct starpu_task *head;
- struct starpu_task *tail;
- };
- /* If we are building starpu and not using gnu inline, we have to avoid
- * declaring the functions extern, as in that case the compiler will compile
- * the inline into all .o files! */
- #if !defined(BUILDING_STARPU) || defined(__GNUC_GNU_INLINE__)
- void starpu_task_list_init(struct starpu_task_list *list);
- void starpu_task_list_push_front(struct starpu_task_list *list, struct starpu_task *task);
- void starpu_task_list_push_back(struct starpu_task_list *list, struct starpu_task *task);
- struct starpu_task *starpu_task_list_front(struct starpu_task_list *list);
- struct starpu_task *starpu_task_list_back(struct starpu_task_list *list);
- int starpu_task_list_empty(struct starpu_task_list *list);
- void starpu_task_list_erase(struct starpu_task_list *list, struct starpu_task *task);
- struct starpu_task *starpu_task_list_pop_front(struct starpu_task_list *list);
- struct starpu_task *starpu_task_list_pop_back(struct starpu_task_list *list);
- struct starpu_task *starpu_task_list_begin(struct starpu_task_list *list);
- struct starpu_task *starpu_task_list_end(struct starpu_task_list *list);
- struct starpu_task *starpu_task_list_next(struct starpu_task *task);
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif /* __STARPU_TASK_LIST_H__ */
|