pingulinux
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.

      Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Explore these features while you wait
      Complete general settings
      Bookmark and like published notes
      Write a few more notes
      Complete general settings
      Write a few more notes
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.

    Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Explore these features while you wait
    Complete general settings
    Bookmark and like published notes
    Write a few more notes
    Complete general settings
    Write a few more notes
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # Process State-fork, exit, wait, signal, thread ###### tags: `C LANGUAGE` `linux` `fork` `signal` `wait` `mmap` `thread` <style> .blue { color: blue; } .bgblue { color: blue; font-size: 24px; font-weight: bold; } .red { color: red; font-size: 24px; font-weight: bold; } h1 {text-align: center;} h2 {text-align: center;} </style> Author: WhoAmI email: kccddb@gmail.com Date: 20230915 Copyright: CC BY-NC-SA ![](https://i.imgur.com/L8dfjur.jpg) 也許以初學者而言您認為不重要, 但是這是設計穩定有效的程式基礎知識 <h1> Families of Operating system</h1> ![](https://hackmd.io/_uploads/rkQespku3.jpg) Typical layout of a simple computer's program memory with the text, various data, and stack and heap sections. 1. Text segment (i.e. instructions) 2. Initialized Data Segment, e.g., char s[] = “hello world”, static int i = 10; 3. Uninitialized Data Segment, e.g., static int i; 4. stack x86: LIFO structure 5. Heap: Heap is the segment where dynamic memory allocation usually takes place. ![](https://hackmd.io/_uploads/r1W7opJ_2.jpg) Ref. [Memory Layout of C Programs](https://www.geeksforgeeks.org/memory-layout-of-c-program/) [Linker](https://https://en.wikipedia.org/wiki/Linker_(computing)) [ld - The GNU linker. Usually the last step in compiling a program is to run ld.](https://linux.die.net/man/1/ld) https://computersciencewiki.org/index.php/Operating_system#Virtual_memory ![](https://i.imgur.com/DexoQha.jpg) **fork** system call ![](https://i.imgur.com/sU9W6UC.jpg) **fork+interrupt** ![](https://i.imgur.com/l5DRZm5.jpg) **您可用 pstree 看你 Linux processes** 由此圖, 可看出 設計網路 server 程式 單獨使用 fork 可能不是很適合. ![](https://i.imgur.com/Qxi0g6u.jpg) :::info **fork() system call** duplicate 1. file descriptor (* **Notice the side effect**, e.g., lseek) 2. global variables (* Notice **copy-on-write**), **local variables (except pid, why?)** 3. ... ( If you want to know the details, you may try to understand the Linux process.) On success, the PID of the child process is returned in the parent, and 0 is returned in the child. On failure, -1 is returned in the parent, no child process is created, and errno is set appropriately. ( #include <errno.h>) child termination: The termination signal of the child is always SIGCHLD. Notice you must handle signal SIGCHLD for important applications. See man 7 signal ::: pthread (執行緒) [Multithreaded Programming (POSIX pthreads Tutorial)](https://randu.org/tutorials/threads/#tsp) [使用 pthread 的 echo server (有bug! why?)](https://hackmd.io/@pingulinux/pthread-echo-bug) [C 語言 pthread 多執行緒平行化程式設計入門教學與範例, by G. T. Wang](https://blog.gtwang.org/programming/pthread-multithreading-programming-in-c-tutorial/) :::info Futher Reading (Linux kernel 的, 初學者可跳過): [Semaphore, by ian910297](https://ithelp.ithome.com.tw/articles/10214270) ::: **Linux VFS (virtual file system) and System Call** ![](https://i.imgur.com/mcvPu9p.jpg) ![](https://i.imgur.com/hEf7iMq.png) ![](https://i.imgur.com/0ZCMSbd.jpg) ![](https://i.imgur.com/0hsFoaG.jpg) <h2>Time Dependent Finite State Machine </h2> ![](https://i.imgur.com/NmfnWd3.jpg) ![](https://i.imgur.com/g8WDaXF.jpg) ![](https://i.imgur.com/k5S76xO.jpg) **context switching** **根據上圖 FSM 的觀念, 必須將 process 的狀態 Mn 存入(save) 記憶體中, 等待換其執行前再(upload)已經紀錄的 Mn, 該processs始能繼續執行 . 至於等多久需視作業系統排程(scheduler)決定** ![](https://i.imgur.com/7PRLxDY.jpg) [Ref. State Machine Design in C](https://www.codeproject.com/Articles/1275479/State-Machine-Design-in-C) [alignment 問題](https://hackmd.io/@sysprog/c-memory) :::info Note: 對於 某些 CPU 可能 引起 重大負擔, 甚至 Linux kernel crash The handling of interrupts was split into two parts: 1. Top half; 2. Bottom half ---> defer interrupt handling in Linux kernel There are three types of **deferred interrupts** in the Linux kernel: softirqs; # cat /proc/softirqs tasklets; enum { HI_SOFTIRQ=0, TIMER_SOFTIRQ, NET_TX_SOFTIRQ, NET_RX_SOFTIRQ, BLOCK_SOFTIRQ, BLOCK_IOPOLL_SOFTIRQ, TASKLET_SOFTIRQ, SCHED_SOFTIRQ, HRTIMER_SOFTIRQ, RCU_SOFTIRQ, NR_SOFTIRQS }; workqueues; Tasklet workqueue can sleep and hold the lock for longtime. kernel thread Kernel threads are the basis of the workqueue mechanism. Essentially, a kernel thread is a thread that only runs in kernel mode and has no user address space or other user attributes Ref. https://0xax.gitbooks.io/linux-insides/content/Interrupts/linux-interrupts-9.html ::: ![](https://i.imgur.com/7R0NXF3.jpg) ![](https://hackmd.io/_uploads/Hk-eMzhwn.jpg) ![](https://hackmd.io/_uploads/BkHGGfhDh.jpg) [**Principle of locality**](https://en.wikipedia.org/wiki/Principle_of_locality) [**MMU**](https://en.wikipedia.org/wiki/Memory_management_unit) ![](https://i.imgur.com/tWrx2kE.jpg) ![](https://i.imgur.com/CVOfJeV.jpg) ![](https://i.imgur.com/9oG7wOo.jpg) ![](https://i.imgur.com/RClvYZS.jpg) ![](https://i.imgur.com/5S0QAB1.jpg) ![](https://hackmd.io/_uploads/rkM1DK9d2.jpg) MC68451 MEMORY MANAGEMENTUNIT [第二十一天 Virtual Memory(虛擬記憶體)--(一)](https://ithelp.ithome.com.tw/articles/10208175) [linux kernel - how to get physical address (memory management)?](https://stackoverflow.com/questions/41090469/linux-kernel-how-to-get-physical-address-memory-management) [Linux 核心設計: 記憶體管理, by 宅色夫](https://hackmd.io/@owlfox/SyVVY3EgI/https%3A%2F%2Fhackmd.io%2Fs%2FrJBXOchtE) The page size is typically 4096 bytes in Linux for x86-64 processors. [Linux HugeTLB Pages](https://docs.kernel.org/admin-guide/mm/hugetlbpage.html) [# Day 12 Cache and TLB Flushing Under Linux (四)](https://ithelp.ithome.com.tw/articles/10269097?sc=rss.iron) :::success Professional Linux® Kernel Architecture, by Wolfgang Mauerer ::: **Page fault** is an exception that the memory management unit (**MMU**) raises when a process accesses a memory page without proper preparations. ![](https://hackmd.io/_uploads/ryfwPY9_3.png) [Content-addressable memory (CAM)](http://en.wikipedia.org/wiki/Content-addressable_memory) [Logical and Physical Address in Operating System](https://www.geeksforgeeks.org/logical-and-physical-address-in-operating-system/) [Translation lookaside buffer](https://en.wikipedia.org/wiki/Translation_lookaside_buffer) [POSIX thread (pthread) libraries](https://www.cs.cmu.edu/afs/cs/academic/class/15492-f07/www/pthreads.html) [The Linux Kernel documentation](https://docs.kernel.org/) ![](https://i.imgur.com/oTTbzgP.png) ![](https://i.imgur.com/OITccnt.jpg) ![](https://i.imgur.com/Pf87g5D.jpg) ![](https://i.imgur.com/yucwDtB.jpg) ![](https://i.imgur.com/Bc3WBZU.jpg) See also [Pthread Scheduling, Fairness, Power](https://hackmd.io/@pingulinux/Process-State-fork-exit-wait-signal) ![](https://i.imgur.com/Gju8hjT.jpg) ![](https://i.imgur.com/PTxKgAZ.png) **man 2 wait** A child that terminates, but has not been waited for becomes a "zombie". The kernel maintains a minimal set of information about the zombie process (PID, termination status, resource usage information) in order to allow the parent to later perform a wait to obtain information about the child. As long as a zombie is not removed from the system via a wait, it will consume a slot in the kernel process table, and if this table fills, it will not be possible to create further processes. **Linux Signal** ![](https://i.imgur.com/d3ShbIv.jpg) 請注意 的default 行為 (man 7 signal) Signal Standard Action Comment SIGABRT P1990 Core Abort signal from abort(3) SIGALRM P1990 Term Timer signal from alarm(2) SIGBUS P2001 Core Bus error (bad memory access) SIGCHLD P1990 Ign Child stopped or terminated SIGCLD - Ign A synonym for SIGCHLD SIGCONT P1990 Cont Continue if stopped SIGEMT - Term Emulator trap SIGFPE P1990 Core Floating-point exception SIGHUP P1990 Term Hangup detected on controlling terminal or death of controlling process SIGILL P1990 Core Illegal Instruction SIGINFO - A synonym for SIGPWR SIGINT P1990 Term Interrupt from keyboard SIGIO - Term I/O now possible (4.2BSD) SIGIOT - Core IOT trap. A synonym for SIGABRT SIGKILL P1990 Term Kill signal SIGLOST - Term File lock lost (unused) SIGPIPE P1990 Term Broken pipe: write to pipe with no readers; see pipe(7) SIGPOLL P2001 Term Pollable event (Sys V). Synonym for SIGIO SIGPROF P2001 Term Profiling timer expired SIGPWR - Term Power failure (System V) SIGQUIT P1990 Core Quit from keyboard SIGSEGV P1990 Core Invalid memory reference SIGSTKFLT - Term Stack fault on coprocessor (unused) SIGSTOP P1990 Stop Stop process SIGTSTP P1990 Stop Stop typed at terminal SIGSYS P2001 Core Bad system call (SVr4); see also seccomp(2) SIGTERM P1990 Term Termination signal SIGTRAP P2001 Core Trace/breakpoint trap SIGTTIN P1990 Stop Terminal input for background process SIGTTOU P1990 Stop Terminal output for background process SIGUNUSED - Core Synonymous with SIGSYS SIGURG P2001 Ign Urgent condition on socket (4.2BSD) SIGUSR1 P1990 Term User-defined signal 1 SIGUSR2 P1990 Term User-defined signal 2 SIGVTALRM P2001 Term Virtual alarm clock (4.2BSD) SIGXCPU P2001 Core CPU time limit exceeded (4.2BSD); see setrlimit(2) SIGXFSZ P2001 Core File size limit exceeded (4.2BSD); see setrlimit(2) signal 運作原理 (Signal hander is sigterm()) ![](https://i.imgur.com/xz4TfFt.jpg) ```c= /* *Copyright (C) GPL *Version: 1.0 2018/09/18 *Authors: WhoAmI gcc -Wall sigalarm.c -o sigalarm gcc -Wall -DTEST sigalarm.c -o sigalarm */ #include <stdio.h> #include <unistd.h> //system calls #include <stdlib.h> #include <signal.h> #define SECS 10 #ifdef TEST #define debugx(x) x #else #define debugx(x) #endif static void sigalarm(int signum) { debugx( printf("catch signal [%d]\n",signum)); } int main (int argc,char *argv[]) { unsigned int secs=SECS; signal(SIGALRM ,sigalarm); alarm(secs); printf("Wait %d secs...>",secs); getchar(); exit(EXIT_SUCCESS); } ``` fork, wait, signal 1. Please man 2 wait 2. Check int loop 3. Check pid 4. Check exit_status 5. Check Virtual Address 6. SIGCHLD 7. [pstree- display a tree of processes](https://man7.org/linux/man-pages/man1/pstree.1.html) 8. [Linux ln Command Tutorial for Beginners (5 Examples)](https://www.howtoforge.com/linux-ln-command/) 9. [ldd - print shared object dependencies](https://www.man7.org/linux/man-pages/man1/ldd.1.html) 10. [strace - trace system calls and signals](https://www.man7.org/linux/man-pages/man1/strace.1.html) ```c= /* Usage of variables, fork(), wait(),signal*/ /* Copyright (c) 2018 * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. * *Author: WhoAmI * */ //Purpose //Understand the operation of variables, fork, wait and signal // #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <unistd.h> #include <sys/types.h> #include <sys/wait.h> //signal hander static void sig_handler(int sig) { int retval; if ( sig == SIGCHLD ){ //wait(&retval); //Be careful! Why? printf("CATCH SIGNAL PID=%d\n ret=%d\n",getpid(),retval); } } int main() { pid_t pid; int exit_status; int loop=0; signal(SIGCHLD,sig_handler); //register the signal table of the process exit_status=1; switch(pid=fork()) { case -1: perror("fork"); exit(EXIT_FAILURE); case 0: /* Child Process */ exit_status=10; printf("[Child] PID is %d exit_status=[%p]\n", getpid(),&exit_status); for(loop=0; loop <1000;loop++); //local variable: loop // &loop address printf("[Child]parent's PID is %d CHILD loop[%p]=%d\n", getppid(),&loop,loop); printf("[Child] Enter my exit status : "); scanf("%d", &exit_status); exit(exit_status); //change exit code default: printf("[PARENT] Child's PID is [%d] exit_status [%p]\n", pid,&exit_status); for(loop=0;loop>-1000;loop--); printf("[PARENT] loop[%p]=%d\n\n",&loop,loop); printf("[PARENT] I'm now waiting for my child to exit()...\n"); wait(&exit_status); //Be carefull printf("[PARENT] Child's exit status is [%d]\n", WEXITSTATUS(exit_status)); } exit(EXIT_SUCCESS); } ``` fork() 後 open file, lseek, copy-on-write 的特別效應 請注意聽課 [Linux 有些CPU 有 Kernel page-table isolation 的功能](https://en.wikipedia.org/wiki/Kernel_page-table_isolation) [Memory Layout of C Programs](https://www.geeksforgeeks.org/memory-layout-of-c-program/) **fork copy-on-write** Under Linux, fork() is implemented using copy-on-write pages, so the only penalty that it incurs is the time and memory required to duplicate the parent's page tables, and to create a unique task structure for the child. **基本 virtual address, physical address, MMU 的觀念 ( 一般單晶片或簡單 SoC 可能沒有**) ![](https://i.imgur.com/SwmJqBU.jpg) ![](https://i.imgur.com/Gdp0Wor.jpg) 例如 if(發生機率高的條件){ 程式碼A }{ 程式碼B { 效率就會比較好! 尤其是 kernel, driver, library 的設計 [What every systems programmer should know about concurrency, by Matt Kline.](https://assets.bitbashing.io/papers/concurrency-primer.pdf) <h1> mmap mlock </h1> [mmap, munmap - map or unmap files or devices into memory](https://man7.org/linux/man-pages/man2/mmap.2.html) [How to use mmap function in C language? by Bamdeb Ghosh ](https://linuxhint.com/using_mmap_function_linux/) ![](https://i.imgur.com/60mQOE8.jpg) ```c= /* *interprocess communication via shared memory *See also mlock, munlock *Author: WhoAmI */ #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <sys/wait.h> #include <sys/mman.h> #define ARRAYSIZE 10 /* void *mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset); If addr is NULL, then the kernel chooses the (page-aligned) address at which to create the mapping; this is the most portable method of creating a new mapping. int munmap(void *addr, size_t length); */ int main(int argc,char *argv[]){ int err; int *pshared; pshared = mmap(NULL,ARRAYSIZE*sizeof(int), PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, 0,0); /* On success, mmap() returns a pointer to the mapped area. On error, the value MAP_FAILED (that is, (void *) -1) is returned. */ if(pshared == MAP_FAILED){ fprintf(stderr, "mmap failed\n"); exit(EXIT_FAILURE); } for(int i=0; i < ARRAYSIZE; i++){ pshared[i] = i ; } printf("Initial values of the array elements :\n"); for (int i = 0; i < ARRAYSIZE; i++ ){ printf(" %d", pshared[i] ); } printf("\n"); pid_t child_pid = fork(); if ( child_pid == 0 ){ //child process updates array printf("--->Child process updates array:\n"); for (int i = 0; i < ARRAYSIZE; i++){ pshared[i] = pshared[i] % 3; } } else{ //parent waitpid ( child_pid, NULL, 0); printf("Parent Process:\n"); printf("Updated values of the array elements :\n"); for (int i = 0; i < ARRAYSIZE; i++ ){ printf(" %d", pshared[i] ); } printf("\n"); } err = munmap(pshared, ARRAYSIZE*sizeof(int)); if(err != 0){ fprintf(stderr,"UnMapping Failed\n"); exit(EXIT_FAILURE); } return 0; } ``` ```c= /* *mmap,munmap *pthread *mlock/munlock *author:WhoAmI */ #include <stdio.h> #include <unistd.h> #include <string.h> #include <pthread.h> #include <stdlib.h> #include <sys/wait.h> #include <sys/mman.h> void PANIC(char* msg); #define PANIC(msg) do { perror(msg); exit(EXIT_FAILURE); }while (0) #define ARRAYSIZE 10 static int threadret=0; void* updateThread(void* arg){ int *pshared=arg; mlock(pshared,ARRAYSIZE); for(int i=0; i < ARRAYSIZE; i++){ pshared[i] = i%3; } threadret=ARRAYSIZE; munlock(pshared,ARRAYSIZE); pthread_exit(&threadret); } int main(void) { pthread_t my_thread; int err; int *pshared; int *retval; pshared = mmap(NULL,ARRAYSIZE*sizeof(int), PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, 0,0); for(int i=0; i < ARRAYSIZE; i++){ pshared[i] = i ; } if ( pthread_create(&my_thread, NULL, updateThread, pshared) != 0 ) { perror("Thread creation"); } pthread_join(my_thread,&retval); for(int i=0; i < ARRAYSIZE; i++){ printf("%d",pshared[i]); } printf("\n"); if(retval!=NULL) printf("retval=%d",*retval ); err = munmap(pshared, ARRAYSIZE*sizeof(int)); if(err != 0){ fprintf(stderr,"Unmapping Failed\n"); exit(EXIT_FAILURE); } exit(EXIT_SUCCESS); } ``` ```c= /* *mmap,munmap *pthread *mlock/munlock *sleep *author:WhoAmI */ #include <stdio.h> #include <unistd.h> #include <string.h> #include <pthread.h> #include <stdlib.h> #include <sys/wait.h> #include <sys/mman.h> void PANIC(char* msg); #define PANIC(msg) do { perror(msg); exit(EXIT_FAILURE); }while (0) #define ARRAYSIZE 10 static int threadret=0; void* updateThread(void* arg){ int *pshared=arg; mlock(pshared,ARRAYSIZE); for(int i=0; i < ARRAYSIZE; i++){ pshared[i] = i%3; } threadret=ARRAYSIZE; sleep(5); munlock(pshared,ARRAYSIZE); pthread_exit(&threadret); } int main(void) { pthread_t my_thread; int err; int *pshared; int *retval; pshared = mmap(NULL,ARRAYSIZE*sizeof(int), PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, 0,0); for(int i=0; i < ARRAYSIZE; i++){ pshared[i] = i ; } if ( pthread_create(&my_thread, NULL, updateThread, pshared) != 0 ) { perror("Thread creation"); } mlock(pshared,ARRAYSIZE); for(int i=0; i < ARRAYSIZE; i++){ printf(":%d",pshared[i]); } munlock(pshared,ARRAYSIZE); pthread_join(my_thread,&retval); for(int i=0; i < ARRAYSIZE; i++){ printf("%d",pshared[i]); } printf("\n"); if(retval!=NULL) printf("retval=%d",*retval ); err = munmap(pshared, ARRAYSIZE*sizeof(int)); if(err != 0){ fprintf(stderr,"UnMapping Failed\n"); exit(EXIT_FAILURE); } exit(EXIT_SUCCESS); } ``` 以下可能有兩種結果(故意設計的)~Why? ![](https://i.imgur.com/XnFfK0E.jpg) ```c= /* *mmap,munmap *pthread *mlock/munlock *sleep */ #include <stdio.h> #include <unistd.h> #include <string.h> #include <pthread.h> #include <stdlib.h> #include <sys/wait.h> #include <sys/mman.h> void PANIC(char* msg); #define PANIC(msg) do { perror(msg); exit(EXIT_FAILURE); }while (0) #define ARRAYSIZE 10 static int threadret=0; void* updateThread(void* arg){ int *pshared=arg; mlock(pshared,ARRAYSIZE); printf("thread!\n"); for(int i=0; i < ARRAYSIZE; i++){ pshared[i] = i%3; } threadret=ARRAYSIZE; sleep(5); munlock(pshared,ARRAYSIZE); pthread_exit(&threadret); } int main(void) { pthread_t my_thread; int err; int *pshared; int *retval; pshared = mmap(NULL,ARRAYSIZE*sizeof(int), PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, 0,0); for(int i=0; i < ARRAYSIZE; i++){ pshared[i] = i ; } if ( pthread_create(&my_thread, NULL, updateThread, pshared) != 0 ) { perror("Thread creation"); } mlock(pshared,ARRAYSIZE); printf("main!\n"); for(int i=0; i < ARRAYSIZE; i++){ pshared[i]=i%2; } munlock(pshared,ARRAYSIZE); pthread_join(my_thread,&retval); for(int i=0; i < ARRAYSIZE; i++){ printf("%d",pshared[i]); } printf("\n"); if(retval!=NULL) printf("retval=%d",*retval ); err = munmap(pshared, ARRAYSIZE*sizeof(int)); if(err != 0){ fprintf(stderr,"UnMapping Failed\n"); exit(EXIT_FAILURE); } exit(EXIT_SUCCESS); } ``` ![](https://i.imgur.com/Z4m6zvY.jpg) --- **mmap** :::info Linux 最有名的 mmap 應是 Framebuffer, 運用 user space 與 kernel space 溝通 另外 就是 運用 user space 控制與設定 硬體晶片 (大學部 要注意alignment 的問題, 有觀念想法就好) ::: **Home Work: Add a system call** Ref. [增加一個 System Call 到 Linux Kernel (v4.x)](https://wenyuangg.github.io/posts/linux/linux-add-system-call.html)

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password
    or
    Sign in via Facebook Sign in via X(Twitter) Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    By signing in, you agree to our terms of service.

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully