X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f9df6a0ce7023e4e22d83bb6c50f27bd21fab329..3ba5d4a966c2ac976b2b1656c52145f70189d108:/src/simix/smx_synchro.cpp diff --git a/src/simix/smx_synchro.cpp b/src/simix/smx_synchro.cpp index adcb7b5060..c4d9731312 100644 --- a/src/simix/smx_synchro.cpp +++ b/src/simix/smx_synchro.cpp @@ -5,8 +5,9 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "src/surf/surf_interface.hpp" #include "smx_private.h" +#include "src/surf/cpu_interface.hpp" +#include "src/surf/surf_interface.hpp" #include #include @@ -14,26 +15,27 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_synchro, simix, "SIMIX Synchronization (mutex, semaphores and conditions)"); -static smx_synchro_t SIMIX_synchro_wait(sg_host_t smx_host, double timeout); +static smx_activity_t SIMIX_synchro_wait(sg_host_t smx_host, double timeout); static void _SIMIX_cond_wait(smx_cond_t cond, smx_mutex_t mutex, double timeout, - smx_process_t issuer, smx_simcall_t simcall); -static void _SIMIX_sem_wait(smx_sem_t sem, double timeout, smx_process_t issuer, + smx_actor_t issuer, smx_simcall_t simcall); +static void _SIMIX_sem_wait(smx_sem_t sem, double timeout, smx_actor_t issuer, smx_simcall_t simcall); /***************************** Raw synchronization *********************************/ -static smx_synchro_t SIMIX_synchro_wait(sg_host_t smx_host, double timeout) +static smx_activity_t SIMIX_synchro_wait(sg_host_t smx_host, double timeout) { XBT_IN("(%p, %f)",smx_host,timeout); - simgrid::kernel::activity::Raw *sync = new simgrid::kernel::activity::Raw(); - sync->sleep = surf_host_sleep(smx_host, timeout); - sync->sleep->setData(sync); + simgrid::kernel::activity::RawImplPtr sync = + simgrid::kernel::activity::RawImplPtr(new simgrid::kernel::activity::RawImpl()); + sync->sleep = smx_host->pimpl_cpu->sleep(timeout); + sync->sleep->setData(&*sync); XBT_OUT(); return sync; } -void SIMIX_synchro_stop_waiting(smx_process_t process, smx_simcall_t simcall) +void SIMIX_synchro_stop_waiting(smx_actor_t process, smx_simcall_t simcall) { XBT_IN("(%p, %p)",process,simcall); switch (simcall->call) { @@ -64,9 +66,9 @@ void SIMIX_synchro_stop_waiting(smx_process_t process, smx_simcall_t simcall) XBT_OUT(); } -void SIMIX_synchro_finish(smx_synchro_t synchro) +void SIMIX_synchro_finish(smx_activity_t synchro) { - XBT_IN("(%p)",synchro); + XBT_IN("(%p)", synchro.get()); smx_simcall_t simcall = synchro->simcalls.front(); synchro->simcalls.pop_front(); @@ -88,7 +90,6 @@ void SIMIX_synchro_finish(smx_synchro_t synchro) SIMIX_synchro_stop_waiting(simcall->issuer, simcall); simcall->issuer->waiting_synchro = nullptr; - delete synchro; SIMIX_simcall_answer(simcall); XBT_OUT(); } @@ -97,7 +98,7 @@ void SIMIX_synchro_finish(smx_synchro_t synchro) namespace simgrid { namespace simix { -Mutex::Mutex() : mutex_(this) +MutexImpl::MutexImpl() : mutex_(this) { XBT_IN("(%p)", this); // Useful to initialize sleeping swag: @@ -106,18 +107,18 @@ Mutex::Mutex() : mutex_(this) XBT_OUT(); } -Mutex::~Mutex() +MutexImpl::~MutexImpl() { XBT_IN("(%p)", this); xbt_swag_free(this->sleeping); XBT_OUT(); } -void Mutex::lock(smx_process_t issuer) +void MutexImpl::lock(smx_actor_t issuer) { XBT_IN("(%p; %p)", this, issuer); /* FIXME: check where to validate the arguments */ - smx_synchro_t synchro = nullptr; + smx_activity_t synchro = nullptr; if (this->locked) { /* FIXME: check if the host is active ? */ @@ -140,7 +141,7 @@ void Mutex::lock(smx_process_t issuer) * \param issuer the process that tries to acquire the mutex * \return whether we managed to lock the mutex */ -bool Mutex::try_lock(smx_process_t issuer) +bool MutexImpl::try_lock(smx_actor_t issuer) { XBT_IN("(%p, %p)", this, issuer); if (this->locked) { @@ -156,13 +157,15 @@ bool Mutex::try_lock(smx_process_t issuer) /** Unlock a mutex for a process * - * Unlocks the mutex and gives it to a process waiting for it. + * Unlocks the mutex and gives it to a process waiting for it. * If the unlocker is not the owner of the mutex nothing happens. * If there are no process waiting, it sets the mutex as free. */ -void Mutex::unlock(smx_process_t issuer) +void MutexImpl::unlock(smx_actor_t issuer) { XBT_IN("(%p, %p)", this, issuer); + if (not this->locked) + THROWF(mismatch_error, 0, "Cannot release that mutex: it was not locked."); /* If the mutex is not owned by the issuer, that's not good */ if (issuer != this->owner) @@ -171,8 +174,7 @@ void Mutex::unlock(smx_process_t issuer) if (xbt_swag_size(this->sleeping) > 0) { /*process to wake up */ - smx_process_t p = (smx_process_t) xbt_swag_extract(this->sleeping); - delete p->waiting_synchro; + smx_actor_t p = (smx_actor_t) xbt_swag_extract(this->sleeping); p->waiting_synchro = nullptr; this->owner = p; SIMIX_simcall_answer(&p->simcall); @@ -204,7 +206,7 @@ void SIMIX_mutex_unref(smx_mutex_t mutex) smx_mutex_t simcall_HANDLER_mutex_init(smx_simcall_t simcall) { - return new simgrid::simix::Mutex(); + return new simgrid::simix::MutexImpl(); } // Simcall handlers: @@ -251,7 +253,7 @@ smx_cond_t SIMIX_cond_init() void simcall_HANDLER_cond_wait(smx_simcall_t simcall, smx_cond_t cond, smx_mutex_t mutex) { XBT_IN("(%p)",simcall); - smx_process_t issuer = simcall->issuer; + smx_actor_t issuer = simcall->issuer; _SIMIX_cond_wait(cond, mutex, -1, issuer, simcall); XBT_OUT(); @@ -265,7 +267,7 @@ void simcall_HANDLER_cond_wait_timeout(smx_simcall_t simcall, smx_cond_t cond, smx_mutex_t mutex, double timeout) { XBT_IN("(%p)",simcall); - smx_process_t issuer = simcall->issuer; + smx_actor_t issuer = simcall->issuer; _SIMIX_cond_wait(cond, mutex, timeout, issuer, simcall); XBT_OUT(); @@ -273,10 +275,10 @@ void simcall_HANDLER_cond_wait_timeout(smx_simcall_t simcall, smx_cond_t cond, static void _SIMIX_cond_wait(smx_cond_t cond, smx_mutex_t mutex, double timeout, - smx_process_t issuer, smx_simcall_t simcall) + smx_actor_t issuer, smx_simcall_t simcall) { XBT_IN("(%p, %p, %f, %p,%p)",cond,mutex,timeout,issuer,simcall); - smx_synchro_t synchro = nullptr; + smx_activity_t synchro = nullptr; XBT_DEBUG("Wait condition %p", cond); @@ -290,32 +292,31 @@ static void _SIMIX_cond_wait(smx_cond_t cond, smx_mutex_t mutex, double timeout, synchro = SIMIX_synchro_wait(issuer->host, timeout); synchro->simcalls.push_front(simcall); issuer->waiting_synchro = synchro; - xbt_swag_insert(simcall->issuer, cond->sleeping); + xbt_swag_insert(simcall->issuer, cond->sleeping); XBT_OUT(); } /** * \brief Signalizes a condition. * - * Signalizes a condition and wakes up a sleeping process. + * Signalizes a condition and wakes up a sleeping process. * If there are no process sleeping, no action is done. * \param cond A condition */ void SIMIX_cond_signal(smx_cond_t cond) { XBT_IN("(%p)",cond); - smx_process_t proc = nullptr; + smx_actor_t proc = nullptr; smx_mutex_t mutex = nullptr; smx_simcall_t simcall = nullptr; XBT_DEBUG("Signal condition %p", cond); - /* If there are processes waiting for the condition choose one and try + /* If there are processes waiting for the condition choose one and try to make it acquire the mutex */ - if ((proc = (smx_process_t) xbt_swag_extract(cond->sleeping))) { + if ((proc = (smx_actor_t) xbt_swag_extract(cond->sleeping))) { /* Destroy waiter's synchronization */ - delete proc->waiting_synchro; proc->waiting_synchro = nullptr; /* Now transform the cond wait simcall into a mutex lock one */ @@ -372,7 +373,6 @@ void intrusive_ptr_add_ref(s_smx_cond_t *cond) { auto previous = (cond->refcount_)++; xbt_assert(previous != 0); - (void) previous; } void intrusive_ptr_release(s_smx_cond_t *cond) @@ -387,7 +387,6 @@ void intrusive_ptr_release(s_smx_cond_t *cond) } /******************************** Semaphores **********************************/ -#define SMX_SEM_NOLIMIT 99999 /** @brief Initialize a semaphore */ smx_sem_t SIMIX_sem_init(unsigned int value) { @@ -426,14 +425,13 @@ void simcall_HANDLER_sem_release(smx_simcall_t simcall, smx_sem_t sem){ void SIMIX_sem_release(smx_sem_t sem) { XBT_IN("(%p)",sem); - smx_process_t proc; + smx_actor_t proc; XBT_DEBUG("Sem release semaphore %p", sem); - if ((proc = (smx_process_t) xbt_swag_extract(sem->sleeping))) { - delete proc->waiting_synchro; + if ((proc = (smx_actor_t) xbt_swag_extract(sem->sleeping))) { proc->waiting_synchro = nullptr; SIMIX_simcall_answer(&proc->simcall); - } else if (sem->value < SMX_SEM_NOLIMIT) { + } else { sem->value++; } XBT_OUT(); @@ -458,11 +456,11 @@ int SIMIX_sem_get_capacity(smx_sem_t sem) return sem->value; } -static void _SIMIX_sem_wait(smx_sem_t sem, double timeout, smx_process_t issuer, +static void _SIMIX_sem_wait(smx_sem_t sem, double timeout, smx_actor_t issuer, smx_simcall_t simcall) { XBT_IN("(%p, %f, %p, %p)",sem,timeout,issuer,simcall); - smx_synchro_t synchro = nullptr; + smx_activity_t synchro = nullptr; XBT_DEBUG("Wait semaphore %p (timeout:%f)", sem, timeout); if (sem->value <= 0) { @@ -495,7 +493,7 @@ void simcall_HANDLER_sem_acquire(smx_simcall_t simcall, smx_sem_t sem) void simcall_HANDLER_sem_acquire_timeout(smx_simcall_t simcall, smx_sem_t sem, double timeout) { XBT_IN("(%p)",simcall); - _SIMIX_sem_wait(sem, timeout, simcall->issuer, simcall); + _SIMIX_sem_wait(sem, timeout, simcall->issuer, simcall); XBT_OUT(); } int simcall_HANDLER_sem_would_block(smx_simcall_t simcall, smx_sem_t sem) {