| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*
- * StarPU
- * Copyright (C) INRIA 2008-2009 (see AUTHORS file)
- *
- * This program 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.
- *
- * This program 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_SPINLOCK_H__
- #define __STARPU_SPINLOCK_H__
- #include <errno.h>
- #include <stdint.h>
- #include <pthread.h>
- #include <common/config.h>
- typedef struct starpu_spinlock_s {
- #ifdef HAVE_PTHREAD_SPIN_LOCK
- pthread_spinlock_t lock;
- #else
- /* we only have a trivial implementation yet ! */
- uint32_t taken __attribute__ ((aligned(16)));
- #endif
- } starpu_spinlock_t;
- int _starpu_spin_init(starpu_spinlock_t *lock);
- int _starpu_spin_destroy(starpu_spinlock_t *lock);
- int _starpu_spin_lock(starpu_spinlock_t *lock);
- int _starpu_spin_trylock(starpu_spinlock_t *lock);
- int _starpu_spin_unlock(starpu_spinlock_t *lock);
- #endif // __STARPU_SPINLOCK_H__
|