12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010, 2011, 2013, 2014 Centre National de la Recherche Scientifique
- *
- * 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 __COMMON_BARRIER_H__
- #define __COMMON_BARRIER_H__
- #include <starpu.h>
- struct _starpu_barrier
- {
- int count;
- int reached_start;
- int reached_exit;
- double reached_flops;
- starpu_pthread_mutex_t mutex;
- starpu_pthread_mutex_t mutex_exit;
- starpu_pthread_cond_t cond;
- };
- int _starpu_barrier_init(struct _starpu_barrier *barrier, int count);
- int _starpu_barrier_destroy(struct _starpu_barrier *barrier);
- int _starpu_barrier_wait(struct _starpu_barrier *barrier);
- #endif // __COMMON_BARRIER_H__
|