Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
python-cpython/Include/critical_section.h at main · sthagen/python-cpython · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
sthagen
/
python-cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
9
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Security and quality
Insights
Files
Expand file tree
main
Breadcrumbs
python-cpython
/
Include
/
critical_section.h
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
101 lines (85 loc) · 3.6 KB
main
Breadcrumbs
python-cpython
/
Include
/
critical_section.h
Copy path
Top
File metadata and controls
Code
Blame
101 lines (85 loc) · 3.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#ifndef
Py_CRITICAL_SECTION_H
#define
Py_CRITICAL_SECTION_H
#ifdef
__cplusplus
extern
"C"
{
#endif
// Python critical sections
//
// Conceptually, critical sections are a deadlock avoidance layer on top of
// per-object locks. These helpers, in combination with those locks, replace
// our usage of the global interpreter lock to provide thread-safety for
// otherwise thread-unsafe objects, such as dict.
//
// NOTE: These APIs are no-ops in non-free-threaded builds.
//
// NOTE: Only the top-most critical section is guaranteed to be active.
// Operations that need to lock two objects at once must use
// `Py_BEGIN_CRITICAL_SECTION2()`. You *CANNOT* use nested critical sections
// to lock more than one object at once, because the inner critical section
// may suspend the outer critical sections. This API does not provide a way
// to lock more than two objects at once (though it could be added later
// if actually needed).
//
// NOTE: Critical sections implicitly behave like reentrant locks because
// attempting to acquire the same lock will suspend any outer (earlier)
// critical sections. However, they are less efficient for this use case than
// purposefully designed reentrant locks.
//
// Example usage:
// Py_BEGIN_CRITICAL_SECTION(op);
// ...
// Py_END_CRITICAL_SECTION();
//
// To lock two objects at once:
// Py_BEGIN_CRITICAL_SECTION2(op1, op2);
// ...
// Py_END_CRITICAL_SECTION2();
// NOTE: the contents of this struct are private and their meaning may
// change betweeen Python releases without a deprecation period.
typedef
struct
PyCriticalSection
{
// Tagged pointer to an outer active critical section (or 0).
uintptr_t
_cs_prev
;
// Mutex used to protect critical section
struct
PyMutex
*
_cs_mutex
;
}
PyCriticalSection
;
// A critical section protected by two mutexes. Use
// Py_BEGIN_CRITICAL_SECTION2 and Py_END_CRITICAL_SECTION2.
// NOTE: the contents of this struct are private and may change betweeen
// Python releases without a deprecation period.
typedef
struct
PyCriticalSection2
{
PyCriticalSection
_cs_base
;
struct
PyMutex
*
_cs_mutex2
;
}
PyCriticalSection2
;
PyAPI_FUNC
(
void
)
PyCriticalSection_Begin
(
PyCriticalSection
*
c
,
PyObject
*
op
);
PyAPI_FUNC
(
void
)
PyCriticalSection_End
(
PyCriticalSection
*
c
);
PyAPI_FUNC
(
void
)
PyCriticalSection2_Begin
(
PyCriticalSection2
*
c
,
PyObject
*
a
,
PyObject
*
b
);
PyAPI_FUNC
(
void
)
PyCriticalSection2_End
(
PyCriticalSection2
*
c
);
// These are definitions for the stable ABI. For GIL-ful builds they're
// conditionally redefined as no-ops in cpython/critical_section.h.
# define
Py_BEGIN_CRITICAL_SECTION
(
op
) \
{ \
PyCriticalSection _py_cs; \
PyCriticalSection_Begin(&_py_cs, _PyObject_CAST(op))
# define
Py_END_CRITICAL_SECTION
() \
PyCriticalSection_End(&_py_cs); \
}
# define
Py_BEGIN_CRITICAL_SECTION2
(
a
,
b
) \
{ \
PyCriticalSection2 _py_cs2; \
PyCriticalSection2_Begin(&_py_cs2, _PyObject_CAST(a), _PyObject_CAST(b))
# define
Py_END_CRITICAL_SECTION2
() \
PyCriticalSection2_End(&_py_cs2); \
}
#ifndef
Py_LIMITED_API
# define
Py_CPYTHON_CRITICAL_SECTION_H
# include
"cpython/critical_section.h"
# undef
Py_CPYTHON_CRITICAL_SECTION_H
#endif
#ifdef
__cplusplus
}
#endif
#endif
/* !Py_CRITICAL_SECTION_H */
You can’t perform that action at this time.