From 1bf5049567faef02ee489dd753ae3b136607b257 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Date: Wed, 15 Feb 2023 18:01:54 +0100 Subject: [PATCH] Remove unused includes and enums --- src/emu/nanos6/nanos6_priv.h | 4 ---- src/emu/nosv/nosv_priv.h | 14 -------------- 2 files changed, 18 deletions(-) diff --git a/src/emu/nanos6/nanos6_priv.h b/src/emu/nanos6/nanos6_priv.h index d250423..8a37853 100644 --- a/src/emu/nanos6/nanos6_priv.h +++ b/src/emu/nanos6/nanos6_priv.h @@ -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 */ diff --git a/src/emu/nosv/nosv_priv.h b/src/emu/nosv/nosv_priv.h index afd5ef8..14ca302 100644 --- a/src/emu/nosv/nosv_priv.h +++ b/src/emu/nosv/nosv_priv.h @@ -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 */