Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Processes e threads
Search
Cheesecake Labs
December 21, 2017
Technology
0
49
Processes e threads
Cheesecake Labs
December 21, 2017
Tweet
Share
More Decks by Cheesecake Labs
See All by Cheesecake Labs
Cats' wellness & care
cheesecakelabs
0
49
How do we create the first impressions?
cheesecakelabs
0
55
Menstrual cup: suit and freedom
cheesecakelabs
0
66
Life is a cycle, better with a bicycle
cheesecakelabs
0
51
Interview Process: how to get the best of people
cheesecakelabs
1
86
My capsule wardrobe experience
cheesecakelabs
3
60
Stonewall Rebellion and its impact on LGBTQIA+ history
cheesecakelabs
1
40
Pregnancy, childbirth and breastfeeding: What do I have to do with it?
cheesecakelabs
0
48
MBTI - Psychological types described by Jung
cheesecakelabs
0
130
Other Decks in Technology
See All in Technology
20251027_マルチエージェントとは
almondo_event
1
460
20251024_TROCCO/COMETAアップデート紹介といくつかデモもやります!_#p_UG 東京:データ活用が進む組織の作り方
soysoysoyb
0
120
オブザーバビリティと育てた ID管理・認証認可基盤の歩み / The Journey of an ID Management, Authentication, and Authorization Platform Nurtured with Observability
kaminashi
1
1k
Okta Identity Governanceで実現する最小権限の原則 / Implementing the Principle of Least Privilege with Okta Identity Governance
tatsumin39
0
180
.NET 10のBlazorの期待の新機能
htkym
0
150
可観測性は開発環境から、開発環境にもオブザーバビリティ導入のススメ
layerx
PRO
4
1.5k
Open Table Format (OTF) が必要になった背景とその機能 (2025.10.28)
simosako
2
370
AI-Readyを目指した非構造化データのメダリオンアーキテクチャ
r_miura
1
340
ViteとTypeScriptのProject Referencesで 大規模モノレポのUIカタログのリリースサイクルを高速化する
shuta13
3
210
MCP ✖️ Apps SDKを触ってみた
hisuzuya
0
390
AI時代の発信活動 ~技術者として認知してもらうための発信法~ / 20251028 Masaki Okuda
shift_evolve
PRO
1
110
ソースを読む時の思考プロセスの例-MkDocs
sat
PRO
1
290
Featured
See All Featured
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
9.7k
4 Signs Your Business is Dying
shpigford
185
22k
Build The Right Thing And Hit Your Dates
maggiecrowley
38
2.9k
Docker and Python
trallard
46
3.6k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.1k
How to Think Like a Performance Engineer
csswizardry
27
2.1k
Producing Creativity
orderedlist
PRO
347
40k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
140
34k
Building an army of robots
kneath
305
46k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
132
19k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.2k
Embracing the Ebb and Flow
colly
88
4.9k
Transcript
Processes and Threads Nixólas
Agenda • Units of processing • Processes • Threads •
Code (?)
Units of processing • Processes and Threads • Series of
instructions • Operating System or Program
What are those processes that you say?
Processes • Instance of a program • Program Code •
Heavy • Has its own memory space • Communication using the IPC (Pipes) • 1 or more threads • Duplicates the state of their parent • Controlled by the OS
What about threads?
Threads • Subset of a process • Small pieces of
code • Light • Shared memory space • Direct communication with other threads • Can only have 1 process • Easily created • Controlled by the programmer
None
Thank you!