时间原因,暂存部分更改

This commit is contained in:
2025-10-03 10:01:01 +08:00
parent 3ada071d44
commit d11c1559ab
3 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,20 @@
#ifndef ERROPROCESS
#define EROPROCESS
typedef struct jobs
{
struct jobs* next;
int job;
}jobs;
typedef struct indiector
{
int status;//熔断标志位
int retreat_index;//退避指数
jobs *head_job;
jobs *rear_job;
}indiector;
int give_upjobs(indiector *self);
#endif