Skip to content

Commit

Permalink
fixup! rationalize osdMutex
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavidsaver committed Dec 7, 2023
1 parent 03d34ff commit d551880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/libcom/src/osi/os/vxWorks/osdMutex.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void epicsMutexOsdSetup(void)

long epicsMutexOsdPrepare(struct epicsMutexParm *mutex)
{
mutex->osd = semMCreate(SEM_DELETE_SAFE|SEM_INVERSION_SAFE|SEM_Q_PRIORITY));
mutex->osd = semMCreate(SEM_DELETE_SAFE|SEM_INVERSION_SAFE|SEM_Q_PRIORITY);
return mutex->osd ? 0 : ENOMEM;
}

Expand Down

0 comments on commit d551880

Please sign in to comment.