Remove unused includes and enums

This commit is contained in:
Rodrigo Arias 2023-02-15 18:01:54 +01:00 committed by Rodrigo Arias Mallo
parent ada4525e85
commit 1bf5049567
2 changed files with 0 additions and 18 deletions

View File

@ -5,13 +5,9 @@
#define NANOS6_PRIV_H
#include "emu.h"
#include "chan.h"
#include "mux.h"
#include "task.h"
#include "track.h"
#include "model_cpu.h"
#include "model_thread.h"
#include "model_pvt.h"
/* Private enums */

View File

@ -5,8 +5,6 @@
#define NOSV_PRIV_H
#include "emu.h"
#include "chan.h"
#include "mux.h"
#include "task.h"
#include "model_cpu.h"
#include "model_thread.h"
@ -22,13 +20,6 @@ enum nosv_chan {
CH_MAX,
};
enum nosv_track {
NONE = 0,
RUN_TH,
ACT_TH,
TRACK_MAX,
};
enum nosv_ss_values {
ST_SCHED_HUNGRY = 6,
ST_SCHED_SERVING,
@ -69,9 +60,4 @@ int nosv_connect(struct emu *emu);
int nosv_event(struct emu *emu);
int nosv_finish(struct emu *emu);
int nosv_init_pvt(struct emu *emu);
int nosv_finish_pvt(struct emu *emu);
const char *nosv_ss_name(int ss);
int nosv_get_track(int c, int type);
#endif /* NOSV_PRIV_H */