Мне нужно пройти все текущие процессы с DFS (поиск в глубину) в linux с C. Мне нужно получить имя родительского процесса и идентификатор родительского процесса с именем gedit. Я пытаюсь использовать функцию getppid. Вот код:
#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/sched.h>
// Not sure of these two include statements:
#include <linux/types.h>
#include <unistd.h>
/* performs a depth-first traversal of the list of tasks in the system. */
void traverse(struct task_struct *ptr) {
struct list_head *list;
struct task_struct *next_task;
pid_t ppid;
if ((thread_group_leader(ptr)) && (strcmp(ptr->comm,"gedit")==0)) {
ppid = getppid();
printk(KERN_INFO "PID:%d\n",ppid); }
list_for_each(list, &ptr->children) {
next_task = list_entry(list, struct task_struct, sibling);
traverse(next_task);
}
}
int simple_init(void)
{
printk(KERN_INFO "Loading Module\n");
printk(KERN_INFO "Gedit's parent process:\n");
traverse(&init_task);
return 0;
}
void simple_exit(void) {
printk(KERN_INFO "Removing Module\n");
}
module_init( simple_init );
module_exit( simple_exit );
Я получаю эту ошибку: unistd.h нет такого файла или каталога Если я пытаюсь включить linux / unistd.h, я получаю неявное отклонение ошибки функции getppid.
Обход работает, проблема только в библиотеках и функции getppid. Кто-нибудь может мне с этим помочь?