13 lines
210 B
C
13 lines
210 B
C
#include "task_struct.h"
|
|
|
|
static struct task_struct global = { .pid = 0, .comm = "subsecond_global" };
|
|
|
|
int subsecond_pid() {
|
|
return global.pid;
|
|
}
|
|
|
|
const char* subsecond_comm() {
|
|
return global.comm;
|
|
}
|
|
|