blob: 18f9a6ce461a7488e61e94f81b406386ce72d5c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
struct judgk_proc_info{
struct hlist_node node;
struct list_head list;
struct task_struct *task;
struct file *std_in;
struct file *std_out;
char run_path[PATH_MAX + 1];
int status;
unsigned long timelimit;
unsigned long jiff_start;
unsigned long jiff_end;
unsigned long memlimit;
unsigned long runtime;
unsigned long memory;
};
|