Browse Definitions :
Definition

multithreading

What is multithreading?

Multithreading is the ability of a program or an operating system to enable more than one user at a time without requiring multiple copies of the program running on the computer. Multithreading can also handle multiple requests from the same user.

Each user request for a program or system service is tracked as a thread with a separate identity. As programs work on behalf of the initial thread request and are interrupted by other requests, the work status of the initial request is tracked until the work is completed. In this context, a user can also be another program.

Fast central processing unit (CPU) speed and large memory capacities are needed for multithreading. The single processor executes pieces, or threads, of various programs so fast, it appears the computer is handling multiple requests simultaneously.

diagram showing how multithreading works
With multithreading, while the computer system's processor executes one instruction at a time, different threads from multiple programs are executed so fast it appears the programs are executed simultaneously.

How does multithreading work?

The extremely fast processing speeds of today's microprocessors make multithreading possible. Even though the processor executes only one instruction at a time, threads from multiple programs are executed so fast that it appears multiple programs are executing concurrently.

Each CPU cycle executes a single thread that links to all other threads in its stream. This synchronization process occurs so quickly that it appears all the streams are executing at the same time. This can be described as a multithreaded program, as it can execute many threads while processing.

Each thread contains information about how it relates to the overall program. While in the asynchronous processing stream, some threads are executed while others wait for their turn. Multithreading requires programmers to pay careful attention to prevent race conditions and deadlock.

An example of multithreading

Multithreading is used in many different contexts. One example occurs when data is entered into a spreadsheet and used for a real-time application.

When working on a spreadsheet, a user enters data into a cell, and the following may happen:

  • column widths may be adjusted;
  • repeating cell elements may be replicated; and
  • spreadsheets may be saved multiple times as the file is further developed.

Each activity occurs because multiple threads are generated and processed for each activity without slowing down the overall spreadsheet application operation.

Multithreading vs. multitasking vs. multiprocessing

Multithreading differs from Multitasking and multiprocessing. However, multitasking and multiprocessing are related to multithreading in the following ways:

  • Multitasking is a computer's ability to execute two or more concurrent programs. Multithreading makes multitasking possible when it breaks programs into smaller, executable threads. Each thread has the programming elements needed to execute the main program, and the computer executes each thread one at a time.
  • Multiprocessing uses more than one CPU to speed up overall processing and supports multitasking.

Multithreading vs. parallel processing and multicore processors

Parallel processing is when two or more CPUs are used to handle separate parts of a task. Multiple tasks can be executed concurrently in a parallel processing system. This differs from using a single processor where only one thread is executed at a time, and the tasks that make up a thread are scheduled sequentially.

Multicore processors on a CPU motherboard have more than one independent processing unit, or core. They differ from single-core CPUs, which have only one processing unit. Multicore CPUs provide increased speed and responsiveness compared to single-core processors.

Multicore processors can execute in parallel as many threads as there are CPU cores. This means parts of a task are completed faster. On a single core system, the threads of a multithreaded applications don't execute in parallel. Instead, they share a single processor core.

diagram of how multicore processors work
Multicore processors have multiple processing units that connect to their own internal cache and to shared resources such as the system bus and memory.

Learn about Clojure programming language -- a dialect of Lisp -- and its Java multithreading uses. It combines accessibility and simplicity with a multithreaded programming infrastructure.

This was last updated in May 2022

Continue Reading About multithreading

Networking
  • subnet (subnetwork)

    A subnet, or subnetwork, is a segmented piece of a larger network. More specifically, subnets are a logical partition of an IP ...

  • Transmission Control Protocol (TCP)

    Transmission Control Protocol (TCP) is a standard protocol on the internet that ensures the reliable transmission of data between...

  • secure access service edge (SASE)

    Secure access service edge (SASE), pronounced sassy, is a cloud architecture model that bundles together network and cloud-native...

Security
  • cyber attack

    A cyber attack is any malicious attempt to gain unauthorized access to a computer, computing system or computer network with the ...

  • digital signature

    A digital signature is a mathematical technique used to validate the authenticity and integrity of a digital document, message or...

  • What is security information and event management (SIEM)?

    Security information and event management (SIEM) is an approach to security management that combines security information ...

CIO
  • product development (new product development)

    Product development -- also called new product management -- is a series of steps that includes the conceptualization, design, ...

  • innovation culture

    Innovation culture is the work environment that leaders cultivate to nurture unorthodox thinking and its application.

  • technology addiction

    Technology addiction is an impulse control disorder that involves the obsessive use of mobile devices, the internet or video ...

HRSoftware
  • organizational network analysis (ONA)

    Organizational network analysis (ONA) is a quantitative method for modeling and analyzing how communications, information, ...

  • HireVue

    HireVue is an enterprise video interviewing technology provider of a platform that lets recruiters and hiring managers screen ...

  • Human Resource Certification Institute (HRCI)

    Human Resource Certification Institute (HRCI) is a U.S.-based credentialing organization offering certifications to HR ...

Customer Experience
  • contact center agent (call center agent)

    A contact center agent is a person who handles incoming or outgoing customer communications for an organization.

  • contact center management

    Contact center management is the process of overseeing contact center operations with the goal of providing an outstanding ...

  • digital marketing

    Digital marketing is the promotion and marketing of goods and services to consumers through digital channels and electronic ...

Close