X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9cca09ad88fcaeb49f2637de97df519c3920aaa4..af54673cde8c28e9b632e0ba95318ea161c1d76c:/src/simix/smx_synchro.cpp diff --git a/src/simix/smx_synchro.cpp b/src/simix/smx_synchro.cpp index 27def86496..78c4935667 100644 --- a/src/simix/smx_synchro.cpp +++ b/src/simix/smx_synchro.cpp @@ -168,7 +168,7 @@ void MutexImpl::unlock(smx_actor_t issuer) /* If the mutex is not owned by the issuer, that's not good */ if (issuer != this->owner) THROWF(mismatch_error, 0, "Cannot release that mutex: it was locked by %s (pid:%lu), not by you.", - this->owner->cname(), this->owner->pid); + this->owner->getCname(), this->owner->pid); if (xbt_swag_size(this->sleeping) > 0) { /*process to wake up */ @@ -386,7 +386,7 @@ smx_sem_t SIMIX_sem_init(unsigned int value) XBT_IN("(%u)",value); simgrid::simix::ActorImpl p; - smx_sem_t sem = xbt_new0(s_smx_sem_t, 1); + smx_sem_t sem = new s_smx_sem_t; sem->sleeping = xbt_swag_new(xbt_swag_offset(p, synchro_hookup)); sem->value = value; XBT_OUT(); @@ -402,7 +402,7 @@ void SIMIX_sem_destroy(smx_sem_t sem) xbt_assert(xbt_swag_size(sem->sleeping) == 0, "Cannot destroy semaphore since someone is still using it"); xbt_swag_free(sem->sleeping); - xbt_free(sem); + delete sem; } XBT_OUT(); }