ft_utils

weave Module Documentation

The weave module is for advanced, specialist thread manipulation features.

Python API

The following two functions are intended to be called from native code (see ft_weave.h below). They take integer arguments where those integers are actually native pointer values which should be created via calling PyLong_FromVoidPtr.

Native API

ft_weave.h provides a header only implementation which in conjuction with having weave imported into the Python VM will permit access to weave’s advanced threading features. The functions in the header will attempt to import ft_utils.weave if required.

Thread-local storage

Note that automatic thread-local storage (weave_local) variables should not be stored within dynamic thread-local storage (_py_register_wvls_destructor). This is because it is not guaranteed that weave_local variables will maintain their value when the wvls_destructor_t function is called. (For example on macOS — depending on many factors — it is possible for weave_local variables to return to their default values before the destructor callback is called.)