blob: f2c0841fc256f6547125bee433472d79796c6aec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
struct judgm_proc_info{
struct hlist_node node;
struct list_head list;
struct task_struct *task;
struct file *pin;
struct file *pout;
char run_path[PATH_MAX + 1];
int status;
unsigned long timelimit;
unsigned long jiffiesstart;
unsigned long jiffiesend;
unsigned long memlimit;
unsigned long runtime;
unsigned long peakmem;
};
|