Skip to content

Commit

Permalink
Update Multiprocessing.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Fancy2209 authored Jan 13, 2024
1 parent c31e98f commit ae400b8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/frameworks/CoreServices/src/CarbonCore/Multiprocessing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,23 @@ OSStatus MPExitCriticalRegion(MPCriticalRegionID criticalRegion)
else
return paramErr;
}

OSStatus MPCreateSemaphore(MPSemaphoreCount maximumValue, MPSemaphoreCount initialValue, MPSemaphoreID *semaphore)
{
return NULL;
}

OSStatus MPDeleteSemaphore(MPSemaphoreID semaphore)
{
return NULL;
}

OSStatus MPSignalSemaphore(MPSemaphoreID semaphore)
{
return NULL;
}

OSStatus MPWaitOnSemaphore(MPSemaphoreID semaphore, Duration timeout)
{
return NULL;
}

0 comments on commit ae400b8

Please sign in to comment.