Files

24 lines
360 B
C
Raw Permalink Normal View History

2026-04-30 20:30:36 +01:00
#ifndef MAGENTA_USER_CPU_H_
#define MAGENTA_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