123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- // StarPU --- Runtime system for heterogeneous multicore architectures.
- //
- // Copyright (C) 2011 Institut National de Recherche en Informatique et Automatique
- // Copyright (C) 2011 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.
- @pthread_mutex_@
- expression E1, E2;
- @@
- (
- - pthread_mutex_init(E1, E2);
- + _STARPU_PTHREAD_MUTEX_INIT(E1, E2);
- |
- - pthread_mutex_lock(E1);
- + _STARPU_PTHREAD_MUTEX_LOCK(E1);
- |
- - pthread_mutex_unlock(E1);
- + _STARPU_PTHREAD_MUTEX_UNLOCK(E1);
- |
- - pthread_mutex_destroy(E1);
- + _STARPU_PTHREAD_MUTEX_DESTROY(E1);
- )
- @pthread_rwlock_@
- expression E;
- @@
- (
- - pthread_rwlock_init(E);
- + _STARPU_PTHREAD_RWLOCK_INIT(E);
- |
- - pthread_rwlock_rdlock(E);
- + _STARPU_PTHREAD_RWLOCK_RDLOCK(E);
- |
- - pthread_rwlock_wrlock(E);
- + _STARPU_PTHREAD_RWLOCK_WRLOCK(E);
- |
- - pthread_rwlock_unlock(E);
- + _STARPU_PTHREAD_RWLOCK_UNLOCK(E);
- |
- - pthread_rwlock_destroy(E);
- + _STARPU_PTHREAD_RWLOCK_DESTROY(E);
- )
- @pthread_cond_@
- expression E1, E2;
- @@
- (
- - pthread_cond_init(E1, E2);
- + _STARPU_PTHREAD_COND_INIT(E1, E2);
- |
- - pthread_cond_signal(E1);
- + _STARPU_PTHREAD_COND_SIGNAL(E1);
- |
- - pthread_cond_broadcast(E1);
- + _STARPU_PTHREAD_COND_BROADCAST(E1);
- |
- - pthread_cond_wait(E1, E2);
- + _STARPU_PTHREAD_COND_WAIT(E1, E2);
- |
- - pthread_cond_destroy(E1);
- + _STARPU_PTHREAD_COND_DESTROY(E1);
- )
- @pthread_barrier_@
- expression E1, E2, E3;
- @@
- (
- - pthread_barrier_init(E1, E2, E3);
- + _STARPU_PTHREAD_BARRIER_INIT(E1, E2, E3);
- |
- - pthread_barrier_wait(E1);
- + _STARPU_PTHREAD_BARRIER_WAIT(E1);
- |
- - pthread_barrier_destroy(E1);
- + _STARPU_PTHREAD_BARRIER_DESTROY(E1);
- )
- @pthread_spin_@
- expression E1;
- @@
- (
- - pthread_spin_destroy(E1);
- + _STARPU_PTHREAD_SPIN_DESTROY(E1);
- |
- - pthread_spin_lock(E1);
- + _STARPU_PTHREAD_SPIN_LOCK(E1);
- |
- - pthread_spin_unlock(E1);
- + _STARPU_PTHREAD_SPIN_UNLOCK(E1);
- )
|