mirror of
https://github.com/tiennm99/HDH.git
synced 2026-06-09 02:13:52 +00:00
10 lines
190 B
C
10 lines
190 B
C
#include "get_proc_info.h"
|
|
#include <linux/kernel.h>
|
|
#include <sys/syscall.h>
|
|
#include <unistd.h>
|
|
|
|
long get_proc_info(pid_t pid, struct procinfos *info)
|
|
{
|
|
return syscall(548, pid, info);
|
|
}
|