Site Tools


critical-sections-openmp

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
critical-sections-openmp [June 11, 2026 at 09:19] Ivan Janevskicritical-sections-openmp [June 11, 2026 at 09:21] (current) Ivan Janevski
Line 1: Line 1:
 # Critical sections (OpenMP) # Critical sections (OpenMP)
-In POSIX threads, mutual exclusion is explicit: you call `pthread_mutex_lock` before a shared update and `pthread_mutex_unlock` after. +In POSIX threads, mutual exclusion is explicit: you call `pthread_mutex_lock` before a shared update and `pthread_mutex_unlock` after.
  
 **Critical sections** in OpenMP do the same thing with a pragma. The enclosed block is protected by an implicit mutex: only one thread at a time executes it, and threads that arrive while another is inside are blocked until it exits. Unlike [[atomic-openmp|`atomic`]], which is limited to a single read-modify-write operation, `critical` can protect an arbitrary sequence of statements. **Critical sections** in OpenMP do the same thing with a pragma. The enclosed block is protected by an implicit mutex: only one thread at a time executes it, and threads that arrive while another is inside are blocked until it exits. Unlike [[atomic-openmp|`atomic`]], which is limited to a single read-modify-write operation, `critical` can protect an arbitrary sequence of statements.
critical-sections-openmp.1781169596.txt.gz · Last modified: by Ivan Janevski