Files
magenta/arch/user/include/mango/machine/cpu.h
T

24 lines
356 B
C
Raw Normal View History

2024-11-02 11:31:51 +00:00
#ifndef MANGO_USER_CPU_H_
#define MANGO_USER_CPU_H_
2023-03-20 20:41:39 +00:00
#ifdef __cplusplus
extern "C" {
#endif
typedef struct ml_cpu_block {
int cpu_reserved;
} ml_cpu_block;
extern int ml_init_bootcpu(void);
extern int ml_cpu_block_init(ml_cpu_block *p);
extern int ml_cpu_block_use(ml_cpu_block *p);
extern void ml_halt_cpu(void);
2023-03-20 20:41:39 +00:00
#ifdef __cplusplus
}
#endif
#endif