.. sources: ``_ .. index:: single: thread .. _topic-thread: Threads ======= .. index:: single: thread safety Thread safety ------------- The MPS is designed to run in an environment with multiple threads all calling into the MPS. Some code is known to operate with exclusive access to the data it manipulates (for example, allocation via :term:`allocation points`, in the common case where the buffer does not need to be refilled, and :term:`location dependencies`), so this code is safe. For the rest of the code, shared data structures are locked by the use of a single lock per :term:`arena`. This lock is claimed on entry to the MPS and released on exit from it. So there is at most a single thread (per arena) running "inside" the MPS at a time. .. index:: single: thread; registration .. _topic-thread-register: Thread registration ------------------- In order to scan a thread's registers for references (which happens at each :term:`flip`), the MPS needs to be able to suspend that thread, and in order to gain exclusive atomic access to memory in order to scan it, the MPS needs to be able to suspend all threads that might access that memory. This means that threads must be registered with the MPS by calling :c:func:`mps_thread_reg` (and thread roots created; see :ref:`topic-root-thread`). A thread must be registered with an :term:`arena` if: * its :term:`control stack` and :term:`registers` form a root (this is enforced by :c:func:`mps_root_create_thread`); or * it reads or writes from a location in an :term:`automatically managed ` :term:`pool` in the arena. However, some automatically managed pool classes may be more liberal than this. See the documentation for the pool class. .. index:: single: signal; handling single: exception; handling single: thread; signal handling single: thread; exception handling .. _topic-thread-signal: Signal and exception handling issues ------------------------------------ .. warning:: On Linux and FreeBSD, the MPS suspends and resumes threads by sending them signals. There's a shortage of available signals that aren't already dedicated to other purposes (for example, ValGrind uses ``SIGUSR1`` and ``SIGUSR2``), so the MPS uses ``SIGXCPU`` and ``SIGXFSZ``. This means that programs must not mask or handle either of these signals. If your program needs to mask or handle either of these signals, then you can configure the MPS to use another pair of signals of your choosing, by defining these preprocessor constants: .. c:macro:: CONFIG_PTHREADEXT_SIGSUSPEND If this preprocessor constant is defined, its definition names the signal used to suspend a thread. For example:: cc -DCONFIG_PTHREADEXT_SIGSUSPEND=SIGUSR1 -c mps.c .. c:macro:: CONFIG_PTHREADEXT_SIGRESUME If this preprocessor constant is defined, its definition names the signal used to resume a thread. For example:: cc -DCONFIG_PTHREADEXT_SIGSUSPEND=SIGUSR2 -c mps.c The MPS sets the :c:data:`SA_RESTART` flag when installing the handlers for these signals, so that most blocking system calls are automatically restarted after the delivery of the signal. However, on Linux, not all blocking system calls are automatically restarted after a signal is handle, so the :term:`client program` must be prepared to handle :c:data:`EINTR` from :c:func:`poll`, :c:func:`nanosleep` and so on. See the |signal|_ manual for a list of affected system calls. .. |signal| replace:: signal(7) .. _signal: https://man7.org/linux/man-pages/man7/signal.7.html .. warning:: The MPS uses :term:`barriers (1)` to :term:`protect ` memory from the :term:`client program` and handles the signals that result from barrier hits. * On Linux and FreeBSD, your program must not mask or handle ``SIGSEGV``. * On Windows, you must not install a first-chance exception handler. * On macOS, you must not install a thread-local Mach exception handler for ``EXC_BAD_ACCESS`` exceptions. All of these things are, in fact, possible, but your program must co-operate with the MPS. At present, there's no documented mechanism for co-operating: if you are in this situation, please :ref:`contact us `. .. index:: single: fork safety .. _topic-thread-fork: Fork safety ----------- On Linux, FreeBSD and macOS, the MPS makes a best-effort attempt to continue running in the child process after a call to :c:func:`fork`, even if the :term:`client program` was running multiple :term:`threads` at the point where the call is made to :c:func:`fork`. .. warning:: POSIX offers little or nothing in the way of guarantees about the situation of a child process running after a multi-threaded parent forked. The specification_ says: .. _specification: https://pubs.opengroup.org/onlinepubs/9699919799/functions/fork.html A process shall be created with a single thread. If a multi-threaded process calls :c:func:`fork`, the new process shall contain a replica of the calling thread and its entire address space, possibly including the states of mutexes and other resources. Consequently, to avoid errors, the child process may only execute async-signal-safe operations until such time as one of the :c:func:`exec` functions is called. .. note:: Although only one thread is created in the child process, any threads in the parent process that were registered with the MPS by calling :c:func:`mps_thread_reg` must still be deregistered, by calling :c:func:`mps_thread_dereg`, before the arena is destroyed. .. index:: single: thread; interface Thread interface ---------------- .. c:type:: mps_thr_t The type of registered :term:`thread` descriptions. In a multi-threaded environment where :term:`incremental garbage collection` is used, threads must be registered with the MPS by calling :c:func:`mps_thread_reg` so that the MPS can suspend them as necessary in order to have exclusive access to their state. Even in a single-threaded environment it may be necessary to register a thread with the MPS so that its :term:`control stack` and :term:`registers` can be registered as a :term:`root` by calling :c:func:`mps_root_create_thread`. .. c:function:: mps_res_t mps_thread_reg(mps_thr_t *thr_o, mps_arena_t arena) Register the current :term:`thread` with an :term:`arena`. ``thr_o`` points to a location that will hold the address of the registered thread description, if successful. ``arena`` is the arena. Returns :c:macro:`MPS_RES_OK` if successful, or another :term:`result code` if not. A thread must be registered with an arena if it ever uses a pointer to a location in an :term:`automatically managed ` :term:`pool` belonging to that arena. .. note:: It is recommended that all threads be registered with all arenas. It is an error if a thread terminates while it is registered. The client program must call :c:func:`mps_thread_dereg` first. .. c:function:: void mps_thread_dereg(mps_thr_t thr) Deregister a :term:`thread`. ``thr`` is the description of the thread. After calling this function, the thread whose registration with an :term:`arena` was recorded in ``thr`` must not read or write from a location in an :term:`automatically managed ` :term:`pool` belonging to that arena. .. note:: Some pool classes may be more liberal about what a thread may do after it has been deregistered. See the documentation for the pool class. .. note:: It is recommended that threads be deregistered only when they are just about to exit.