Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 781 Bytes

同主机进程间同步机制——信号量.md

File metadata and controls

47 lines (33 loc) · 781 Bytes

「 同主机进程间同步机制——信号量(semaphore) 」

💬 进程的调度算法

  • 变量声明

    存储类型 类型修饰符 数据类型 变量名
    
    eg:
    static unsigned int num = 10;

💬 进程的调度时机

  • 返回局部变量地址错误

    #include <stdio.h>
    
    int* test(void)
    {
        int i=10;
        return &i;
    }
    
    int main(void)
    {
        int *p;
        p = test();
        printf("*p=%d\n", *p);
        
        return 0;
    }
- End -