Process Management

Thread

English

Overview

A further-subdivided unit of execution within a process.

Details

A lighter-weight unit of execution that runs concurrently within a process while sharing its memory space. Because it shares the same address space, it's faster than inter-process communication, but concurrent access to shared data requires mutual exclusion.

More Linux terms