13 lines
202 B
C
13 lines
202 B
C
#include "task_struct.h"
|
|
|
|
static struct task_struct global = { .pid = 43, .comm = "second_global" };
|
|
|
|
int second_pid() {
|
|
return global.pid;
|
|
}
|
|
|
|
const char* second_comm() {
|
|
return global.comm;
|
|
}
|
|
|