8 lines
141 B
C
8 lines
141 B
C
#include "task_struct.h"
|
|
|
|
static struct task_struct global = { .pid = 43, .comm = "third_global" };
|
|
|
|
int third_pid() {
|
|
return global.pid;
|
|
}
|