⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 spinlock.h

📁 美国mit操作系统课程所用的一个教学操作系统xv6
💻 H
字号:
// Mutual exclusion lock.struct spinlock {  uint locked;   // Is the lock held?    // For debugging:  char *name;    // Name of lock.  int  cpu;      // The number of the cpu holding the lock.  uint pcs[10];  // The call stack (an array of program counters)                 // that locked the lock.};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -