X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=cacao.git;a=blobdiff_plain;f=src%2Fmm%2Fboehm-gc%2Finclude%2Fprivate%2Fdarwin_semaphore.h;h=9baceebea1dc140b531850b2af6cf318ea2b3fd8;hp=0f43982d5c1e1b3af86126400ab5b281aecfcd20;hb=c83bff94e40ee0a218a39931af17814d1a42cb5c;hpb=db5750e3eaf39a47dbccccfe7cdd180fb686aac6 diff --git a/src/mm/boehm-gc/include/private/darwin_semaphore.h b/src/mm/boehm-gc/include/private/darwin_semaphore.h index 0f43982d5..9baceebea 100644 --- a/src/mm/boehm-gc/include/private/darwin_semaphore.h +++ b/src/mm/boehm-gc/include/private/darwin_semaphore.h @@ -21,7 +21,7 @@ typedef struct { static int sem_init(sem_t *sem, int pshared, int value) { int ret; if(pshared) - GC_abort("sem_init with pshared set"); + ABORT("sem_init with pshared set"); sem->value = value; ret = pthread_mutex_init(&sem->mutex,NULL);