Skip to content

Commit

Permalink
doc: Update 'mutex_performance.c'
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Sep 8, 2023
1 parent e580fdd commit 544221d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mutex_performance.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@

#elif defined(USE_MCFGTHREAD)

# define my_mutex_t __gthread_mutex_t
# define my_init(m) __GTHREAD_MUTEX_INIT_FUNCTION(m)
# define my_lock(m) __gthread_mutex_lock(m)
# define my_unlock(m) __gthread_mutex_unlock(m)
# define my_mutex_t _MCF_mutex
# define my_init(m) __MCF_gthr_mutex_init(m)
# define my_lock(m) __MCF_gthr_mutex_lock(m)
# define my_unlock(m) __MCF_gthr_mutex_unlock(m)

#else

Expand Down

0 comments on commit 544221d

Please sign in to comment.