123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010, 2012-2013 Université de Bordeaux 1
- * Copyright (C) 2010, 2011, 2012, 2013 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.
- */
- #include <starpu.h>
- #include <common/thread.h>
- #include <core/simgrid.h>
- #ifdef STARPU_SIMGRID
- #include <xbt/synchro_core.h>
- #endif
- #ifdef STARPU_SIMGRID
- extern int _starpu_simgrid_thread_start(int argc, char *argv[]);
- int starpu_pthread_create_on(char *name, starpu_pthread_t *thread, const starpu_pthread_attr_t *attr, void *(*start_routine) (void *), void *arg, int where)
- {
- struct _starpu_pthread_args *_args = malloc(sizeof(*_args));
- xbt_dynar_t _hosts;
- _args->f = start_routine;
- _args->arg = arg;
- _hosts = MSG_hosts_as_dynar();
- MSG_process_create(name, _starpu_simgrid_thread_start, _args,
- xbt_dynar_get_as(_hosts, (where), msg_host_t));
- xbt_dynar_free(&_hosts);
- return 0;
- }
- int starpu_pthread_create(starpu_pthread_t *thread, const starpu_pthread_attr_t *attr, void *(*start_routine) (void *), void *arg)
- {
- return starpu_pthread_create_on("", thread, attr, start_routine, arg, 0);
- }
- int starpu_pthread_join(starpu_pthread_t thread, void **retval)
- {
- #ifdef STARPU_DEVEL
- #warning TODO: use a simgrid_join when it becomes available
- #endif
- MSG_process_sleep(1);
- return 0;
- }
- int starpu_pthread_attr_init(starpu_pthread_attr_t *attr)
- {
- return 0;
- }
- int starpu_pthread_attr_destroy(starpu_pthread_attr_t *attr)
- {
- return 0;
- }
- int starpu_pthread_attr_setdetachstate(starpu_pthread_attr_t *attr, int detachstate)
- {
- return 0;
- }
- int starpu_pthread_mutex_init(starpu_pthread_mutex_t *mutex, const starpu_pthread_mutexattr_t *mutexattr)
- {
- *mutex = xbt_mutex_init();
- return 0;
- }
- int starpu_pthread_mutex_destroy(starpu_pthread_mutex_t *mutex)
- {
- if (*mutex)
- xbt_mutex_destroy(*mutex);
- return 0;
- }
- int starpu_pthread_mutex_lock(starpu_pthread_mutex_t *mutex)
- {
- const char *file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_LOCKING_MUTEX(file,__LINE__);
- if (!*mutex) STARPU_PTHREAD_MUTEX_INIT(mutex, NULL);
- xbt_mutex_acquire(*mutex);
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_MUTEX_LOCKED(file,__LINE__);
- return 0;
- }
- int starpu_pthread_mutex_unlock(starpu_pthread_mutex_t *mutex)
- {
- const char *file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_UNLOCKING_MUTEX(file,__LINE__);
- xbt_mutex_release(*mutex);
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_MUTEX_UNLOCKED(file,__LINE__);
- return 0;
- }
- int starpu_pthread_mutex_trylock(starpu_pthread_mutex_t *mutex)
- {
- const char *file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_TRYLOCK_MUTEX(file,__LINE__);
- xbt_mutex_acquire(*mutex);
- return 0;
- }
- static int used_key[MAX_TSD];
- int starpu_pthread_key_create(starpu_pthread_key_t *key, void (*destr_function) (void *))
- {
- unsigned i;
- /* Note: no synchronization here, we are actually monothreaded anyway. */
- for (i = 0; i < MAX_TSD; i++)
- if (!used_key[i])
- {
- used_key[i] = 1;
- break;
- }
- STARPU_ASSERT(i < MAX_TSD);
- *key = i;
- return 0;
- }
- int starpu_pthread_key_delete(starpu_pthread_key_t key)
- {
- used_key[key] = 0;
- return 0;
- }
- int starpu_pthread_setspecific(starpu_pthread_key_t key, const void *pointer)
- {
- void **array = MSG_host_get_data(MSG_host_self());
- array[key] = pointer;
- return 0;
- }
- void* starpu_pthread_getspecific(starpu_pthread_key_t key)
- {
- void **array = MSG_host_get_data(MSG_host_self());
- return array[key];
- }
- int starpu_pthread_cond_init(starpu_pthread_cond_t *cond, starpu_pthread_condattr_t *cond_attr)
- {
- *cond = xbt_cond_init();
- return 0;
- }
- int starpu_pthread_cond_signal(starpu_pthread_cond_t *cond)
- {
- if (!*cond)
- STARPU_PTHREAD_COND_INIT(cond, NULL);
- xbt_cond_signal(*cond);
- return 0;
- }
- int starpu_pthread_cond_broadcast(starpu_pthread_cond_t *cond)
- {
- if (!*cond)
- STARPU_PTHREAD_COND_INIT(cond, NULL);
- xbt_cond_broadcast(*cond);
- return 0;
- }
- int starpu_pthread_cond_wait(starpu_pthread_cond_t *cond, starpu_pthread_mutex_t *mutex)
- {
- const char* file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_COND_WAIT_BEGIN(file,__LINE__);
- if (!*cond)
- STARPU_PTHREAD_COND_INIT(cond, NULL);
- xbt_cond_wait(*cond, *mutex);
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_COND_WAIT_END(file,__LINE__);
- return 0;
- }
- int starpu_pthread_cond_destroy(starpu_pthread_cond_t *cond)
- {
- if (*cond)
- xbt_cond_destroy(*cond);
- return 0;
- }
- int starpu_pthread_rwlock_init(starpu_pthread_rwlock_t *restrict rwlock, const starpu_pthread_rwlockattr_t *restrict attr)
- {
- return starpu_pthread_mutex_init(rwlock, attr);
- }
- int starpu_pthread_rwlock_destroy(starpu_pthread_rwlock_t *rwlock)
- {
- return starpu_pthread_mutex_destroy(rwlock);
- }
- int starpu_pthread_rwlock_rdlock(starpu_pthread_rwlock_t *rwlock)
- {
- const char* file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_RDLOCKING_RWLOCK(file,__LINE__);
- int p_ret = starpu_pthread_mutex_lock(rwlock);
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_RWLOCK_RDLOCKED(file,__LINE__);
- return p_ret;
- }
- int starpu_pthread_rwlock_wrlock(starpu_pthread_rwlock_t *rwlock)
- {
- const char* file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_WRLOCKING_RWLOCK(file,__LINE__);
- int p_ret = starpu_pthread_mutex_lock(rwlock);
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_RWLOCK_WRLOCKED(file,__LINE__);
- return p_ret;
- }
- int starpu_pthread_rwlock_unlock(starpu_pthread_rwlock_t *rwlock)
- {
- const char* file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_UNLOCKING_RWLOCK(file,__LINE__);
- int p_ret = starpu_pthread_mutex_unlock(rwlock);
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_RWLOCK_UNLOCKED(file,__LINE__);
- return p_ret;
- }
- #elif !defined(_MSC_VER) /* !STARPU_SIMGRID */
- int starpu_pthread_mutex_lock(starpu_pthread_mutex_t *mutex)
- {
- const char *file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_LOCKING_MUTEX(file,__LINE__);
- int p_ret = pthread_mutex_lock(mutex);
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_MUTEX_LOCKED(file,__LINE__);
- return p_ret;
- }
- int starpu_pthread_mutex_unlock(starpu_pthread_mutex_t *mutex)
- {
- const char *file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_UNLOCKING_MUTEX(file,__LINE__);
- int p_ret = pthread_mutex_unlock(mutex);
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_MUTEX_UNLOCKED(file,__LINE__);
- return p_ret;
- }
- int starpu_pthread_mutex_trylock(starpu_pthread_mutex_t *mutex)
- {
- const char *file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_LOCKING_MUTEX(file,__LINE__);
- return pthread_mutex_trylock(mutex);
- }
- int starpu_pthread_cond_wait(starpu_pthread_cond_t *cond, starpu_pthread_mutex_t *mutex)
- {
- const char* file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_COND_WAIT_BEGIN(file,__LINE__);
- int p_ret = pthread_cond_wait(cond, mutex);
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_COND_WAIT_END(file,__LINE__);
- return p_ret;
- }
- int starpu_pthread_rwlock_rdlock(starpu_pthread_rwlock_t *rwlock)
- {
- const char* file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_RDLOCKING_RWLOCK(file,__LINE__);
- int p_ret = pthread_rwlock_rdlock(rwlock);
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_RWLOCK_RDLOCKED(file,__LINE__);
- return p_ret;
- }
- int starpu_pthread_rwlock_wrlock(starpu_pthread_rwlock_t *rwlock)
- {
- const char* file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_WRLOCKING_RWLOCK(file,__LINE__);
- int p_ret = pthread_rwlock_wrlock(rwlock);
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_RWLOCK_WRLOCKED(file,__LINE__);
- return p_ret;
- }
- int starpu_pthread_rwlock_unlock(starpu_pthread_rwlock_t *rwlock)
- {
- const char* file;
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_UNLOCKING_RWLOCK(file,__LINE__);
- int p_ret = pthread_rwlock_unlock(rwlock);
- file = strrchr(__FILE__,'/');
- file += sizeof(char);
- _STARPU_TRACE_RWLOCK_UNLOCKED(file,__LINE__);
- return p_ret;
- }
- #endif /* STARPU_SIMGRID, _MSC_VER */
|