HV: Remove INIT signal notification related code

We don't use INIT signal notification method now. This patch
removes them.

Tracked-On: #3886
Acked-by: Eddie Dong <eddie.dong@intel.com>
Signed-off-by: Kaige Fu <kaige.fu@intel.com>
This commit is contained in:
Kaige Fu
2019-12-06 09:52:11 +00:00
committed by wenlingz
parent 6d1f63aef0
commit 5f9d1379bc
5 changed files with 3 additions and 56 deletions

View File

@@ -174,15 +174,6 @@ void send_single_ipi(uint16_t pcpu_id, uint32_t vector);
*/
/* End of ipi_ext_apis */
/**
* @brief Send an INIT signal to a single pCPU
*
* @param[in] pcpu_id The id of destination physical cpu
*
* @return None
*/
void send_single_init(uint16_t pcpu_id);
/**
* @brief Send an NMI signal to a single pCPU
*

View File

@@ -12,9 +12,8 @@
#define NEED_RESCHEDULE (1U)
#define DEL_MODE_INIT (1U)
#define DEL_MODE_NMI (1U)
#define DEL_MODE_IPI (2U)
#define DEL_MODE_NMI (3U)
#define THREAD_DATA_SIZE (256U)
@@ -25,7 +24,6 @@ enum thread_object_state {
};
enum sched_notify_mode {
SCHED_NOTIFY_INIT,
SCHED_NOTIFY_NMI,
SCHED_NOTIFY_IPI
};