pymembar 0.0.1__cp314-cp314-musllinux_1_2_x86_64.whl → 0.0.2__cp314-cp314-musllinux_1_2_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- membar/__init__.py +1 -1
- membar/__init__.pyi +32 -0
- membar/py.typed +0 -0
- {pymembar-0.0.1.dist-info → pymembar-0.0.2.dist-info}/METADATA +1 -1
- pymembar-0.0.2.dist-info/RECORD +9 -0
- pymembar-0.0.1.dist-info/RECORD +0 -7
- {pymembar-0.0.1.dist-info → pymembar-0.0.2.dist-info}/WHEEL +0 -0
- {pymembar-0.0.1.dist-info → pymembar-0.0.2.dist-info}/licenses/LICENSE.txt +0 -0
- {pymembar-0.0.1.dist-info → pymembar-0.0.2.dist-info}/top_level.txt +0 -0
membar/__init__.py
CHANGED
membar/__init__.pyi
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type stubs for membar module - Memory barrier utilities for Python
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
def wmb() -> None:
|
|
6
|
+
"""
|
|
7
|
+
Write memory barrier.
|
|
8
|
+
|
|
9
|
+
Ensures that all write operations issued before this barrier
|
|
10
|
+
are completed before any write operations issued after this barrier.
|
|
11
|
+
"""
|
|
12
|
+
...
|
|
13
|
+
|
|
14
|
+
def rmb() -> None:
|
|
15
|
+
"""
|
|
16
|
+
Read memory barrier.
|
|
17
|
+
|
|
18
|
+
Ensures that all read operations issued before this barrier
|
|
19
|
+
are completed before any read operations issued after this barrier.
|
|
20
|
+
"""
|
|
21
|
+
...
|
|
22
|
+
|
|
23
|
+
def fence() -> None:
|
|
24
|
+
"""
|
|
25
|
+
Full memory fence.
|
|
26
|
+
|
|
27
|
+
Ensures that all memory operations (both reads and writes) issued before
|
|
28
|
+
this barrier are completed before any memory operations issued after this barrier.
|
|
29
|
+
"""
|
|
30
|
+
...
|
|
31
|
+
|
|
32
|
+
__all__ = ['wmb', 'rmb', 'fence']
|
membar/py.typed
ADDED
|
File without changes
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
membar/__init__.py,sha256=0iiqRV-gtAQFLIOdcXVPWfpIfb9wCLpLc6MnyH_TxOs,476
|
|
2
|
+
membar/__init__.pyi,sha256=glQKrU-Ip7Dktd_o4sADHqcGfpq3VF1K_djueMbTyNI,759
|
|
3
|
+
membar/_membar.cpython-314-x86_64-linux-musl.so,sha256=W5hpLVEvmFiugJ7thVTwrjjkWRvWKvyBoZBlt2SM_wQ,25960
|
|
4
|
+
membar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
pymembar-0.0.2.dist-info/METADATA,sha256=L4z0m3DJP0pJdoEvnr_6DKrP8pXc-zjTgQpR4EhXJEs,4572
|
|
6
|
+
pymembar-0.0.2.dist-info/WHEEL,sha256=K2_TehZnioJBDmm5baDVfhoCxaclJzJsPrng3hg7WD0,112
|
|
7
|
+
pymembar-0.0.2.dist-info/top_level.txt,sha256=FTuLb28Ianih6q3VxqZmPeRo7ppIhVkSpLcVkbNrxow,7
|
|
8
|
+
pymembar-0.0.2.dist-info/RECORD,,
|
|
9
|
+
pymembar-0.0.2.dist-info/licenses/LICENSE.txt,sha256=D5tHuFx3CsUmFQTursu3R7LmOAgCWqlytpquqGKWXdY,1499
|
pymembar-0.0.1.dist-info/RECORD
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
membar/__init__.py,sha256=wmokudo8AdUH4_AGvTXIgZ4NAeMyf_dvpWSDtYsmYh4,476
|
|
2
|
-
membar/_membar.cpython-314-x86_64-linux-musl.so,sha256=W5hpLVEvmFiugJ7thVTwrjjkWRvWKvyBoZBlt2SM_wQ,25960
|
|
3
|
-
pymembar-0.0.1.dist-info/METADATA,sha256=ApsPHkQPQS1OuJzrHhM9gYX2kOkFsnwppAxouYLNoRE,4572
|
|
4
|
-
pymembar-0.0.1.dist-info/WHEEL,sha256=K2_TehZnioJBDmm5baDVfhoCxaclJzJsPrng3hg7WD0,112
|
|
5
|
-
pymembar-0.0.1.dist-info/top_level.txt,sha256=FTuLb28Ianih6q3VxqZmPeRo7ppIhVkSpLcVkbNrxow,7
|
|
6
|
-
pymembar-0.0.1.dist-info/RECORD,,
|
|
7
|
-
pymembar-0.0.1.dist-info/licenses/LICENSE.txt,sha256=D5tHuFx3CsUmFQTursu3R7LmOAgCWqlytpquqGKWXdY,1499
|
|
File without changes
|
|
File without changes
|
|
File without changes
|