CS423: Operating Systems Design
CS 423 Operating System Design:
Con Concu curren rrency cy
Tianyin Tianyin Xu Xu
* Thanks for Prof. Adam Bates for the slides.
CS 423 Operating System Design: Con Concu curren rrency cy - - PowerPoint PPT Presentation
CS 423 Operating System Design: Con Concu curren rrency cy Tianyin Tianyin Xu Xu * Thanks for Prof. Adam Bates for the slides. CS423: Operating Systems Design Nix and NixOS What is nix Nix is a powerful package manager for Linux
CS423: Operating Systems Design
* Thanks for Prof. Adam Bates for the slides.
CS423: Operating Systems Design
systems that makes package management reliable and
side installation of multiple versions of a package, multi-user package management and easy setup of build environments.
and configuration management. Built on top of the Nix package manager, it is completely declarative, makes upgrading systems reliable, and has many other advantages.
2
CS423: Operating Systems Design
3
CS423: Operating Systems Design
4
CS423: Operating Systems Design
5
CS423: Operating Systems Design
CS423: Operating Systems Design
1.
2.
3.
Paral allel exec execution 4.
Concurrent bu but no not para rallel 5.
Paral allel bu but no not con concu current 6.
Paral allel an and con concu current
CS423: Operating Systems Design
8
CS423: Operating Systems Design
9
CS423: Operating Systems Design
10
CS423: Operating Systems Design
11
Variable Speed: Program must anticipate all of these possible executions Programmer View
CS423: Operating Systems Design
12
Something to look forward to when we discuss scheduling! Processor View
CS423: Operating Systems Design
13
CS423: Operating Systems Design
14
#define NTHREADS 10 thread_t threads[NTHREADS]; main() { for (i = 0; i < NTHREADS; i++) thread_create(&threads[i], &go, i); for (i = 0; i < NTHREADS; i++) { exitValue = thread_join(threads[i]); printf("Thread %d returned with %ld\n", i, exitValue); } printf("Main thread done.\n"); } void go (int n) { printf("Hello from thread %d\n", n); thread_exit(100 + n); // REACHED? }
CS423: Operating Systems Design
15
CS423: Operating Systems Design
16
CS423: Operating Systems Design
17
void blockzero (unsigned char *p, int length) { int i, j; thread_t threads[NTHREADS]; struct bzeroparams params[NTHREADS]; // For simplicity, assumes length is divisible by NTHREADS. for (i = 0, j = 0; i < NTHREADS; i++, j += length/NTHREADS) { params[i].buffer = p + i * length/NTHREADS; params[i].length = length/NTHREADS; thread_create_p(&(threads[i]), &go, ¶ms[i]); } for (i = 0; i < NTHREADS; i++) { thread_join(threads[i]); } }
CS423: Operating Systems Design
18
CS423: Operating Systems Design
19
CS423: Operating Systems Design
20
CS423: Operating Systems Design
21
CS423: Operating Systems Design
22
CS423: Operating Systems Design
23
CS423: Operating Systems Design
24 # Save caller’s register state # NOTE: %eax, etc. are ephemeral pushl %ebx pushl %ebp pushl %esi pushl %edi # Get offsetof (struct thread, stack) mov thread_stack_ofs, %edx # Save current stack pointer to old thread's stack, if any. movl SWITCH_CUR(%esp), %eax movl %esp, (%eax,%edx,1) # Change stack pointer to new thread's stack # this also changes currentThread movl SWITCH_NEXT(%esp), %ecx movl (%ecx,%edx,1), %esp # Restore caller's register state. popl %edi popl %esi popl %ebp popl %ebx ret
How do we switch out thread state? (i.e., ctx switch)
CS423: Operating Systems Design
26
CS423: Operating Systems Design
29
CS423: Operating Systems Design 30
CS423: Operating Systems Design
31
CS423: Operating Systems Design
32
CS 423: Operating Systems Design 33
M:N model multiplexes N user-level threads onto M kernel-level threads
CS423: Operating Systems Design
34