boehm-gc: revert all CACAO-specific modifications; this is now an exact copy of the...
[cacao.git] / src / mm / boehm-gc / include / private / darwin_semaphore.h
index 0f43982d5c1e1b3af86126400ab5b281aecfcd20..9baceebea1dc140b531850b2af6cf318ea2b3fd8 100644 (file)
@@ -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);