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

📄 smp.h

📁 kvm 源代码
💻 H
字号:
#ifndef __SMP_H#define __SMP_Hstruct spinlock {    int v;};void smp_init(void (*smp_main)(void));int cpu_count(void);int smp_id(void);void on_cpu(int cpu, void (*function)(void *data), void *data);void spin_lock(struct spinlock *lock);void spin_unlock(struct spinlock *lock);#endif

⌨️ 快捷键说明

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