eolas/zk/Threads.md
2024-06-26 06:00:04 +01:00

19 lines
451 B
Markdown

---
id: zadl
title: Threads
tags: []
created: Wednesday, June 26, 2024
---
# Threads
A process is a running instance of a given program. A program runs sequentially
handling one task at a time, however we may need to run certain tasks in
parallel.
For example think of a program that is downloading a resource from the internet
and wants to update the UI at the same time to show the download process.
## Related notes
![Processes](Processes.md)