cs61c intro
约 133 个字 10 行代码 6 张图片 预计阅读时间 1 分钟 共被读过 次
- Concurrent Thread
- Parallel Thread
- Parallel Instruction
- Parallel Data
5 Great Ideas in Computer Architecture¶
- Abstraction (Layers of Representation/Interpretation)
- Moore’s Law (Designing through trends)
- Principle of Locality (Memory Hierarchy)
- Parallelism & Amdahl's law (which limits it)
- Dependability via Redundancy
Sumery:
C
int *fn(void *, void *); // 这是一个返回 int* 类型的函数,不是函数指针
int (*fn)(void *, void *); // 这是一个指向返回 int 类型并接受两个 void* 参数的函数的指针
- If you forget to deallocate memory: “Memory Leak””
- Your program will eventually run out of memory
- If you call free twice on the same memory: “Double Free”
- Possible crash or exploitable vulnerabilityy
- If you use data after calling free: “Use after free”
- Possible crash or exploitable vulnerability