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
|
==========================
Caveats and Known Issues
==========================
This document will describe known issues and sharp edges of greenlets.
Native Functions Should Be Re-entrant
=====================================
Use caution when switching greenlet stacks that include native (C)
frames. Much like with threads, if the library function is not
re-entrant, and more than one greenlet attempts to enter it, subtle
problems can result.
Common constructs in C that may not be reentrant include:
- static variables in functions;
- global variables.
This was the source of an issue in gevent that led to corruption of
libuv's internal state. The fix was to avoid re-entering the
vulnerable function.
Use Caution Mixing Greenlets and Signal Handlers
================================================
In CPython, signal handler functions *must* return in order for the
rest of the program to proceed. Switching greenlets in a signal
handler to, for example, get back to the main greenlet, such that the
signal handler function doesn't really return to CPython, is likely to
lead to a hang.
See :issue:`143` for an example.
Free-threading Is Not Supported
===============================
Beginning with 3.14 (and experimental in 3.13), CPython may be built
in a free-threaded mode where the GIL is not used by default. greenlet
does not support this mode (although it will build with it), and using
greenlet in such an interpreter will cause the GIL to be enabled.
In addition, there are known issues running greenlets in a
free-threaded CPython. These include:
- Garbage collection differences may cause ``GreenletExit`` to no
longer be raised in certain multi-threaded scenarios.
- There may be other memory leaks.
|