2021-11-13 01:50:50 +08:00
|
|
|
#ifndef SC_PROCESS_INTR_H
|
|
|
|
#define SC_PROCESS_INTR_H
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
|
|
#include "intr.h"
|
|
|
|
#include "process.h"
|
|
|
|
|
|
|
|
bool
|
|
|
|
sc_process_check_success_intr(struct sc_intr *intr, sc_pid pid,
|
2021-11-19 01:31:36 +08:00
|
|
|
const char *name, bool close);
|
2021-11-13 01:50:50 +08:00
|
|
|
|
|
|
|
#endif
|