-
Notifications
You must be signed in to change notification settings - Fork 0
/
hello.c
52 lines (35 loc) · 1.11 KB
/
hello.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/sched/signal.h>
//Luan Belem Rivello
void print_process(void){
struct task_struct *task_list;
struct list_head *sub;
for_each_process(task_list) {
printk("== %s [%d]\n", task_list->comm, task_list->pid);
list_for_each(sub, &task_list->children){
struct task_struct *task;
task = list_entry(sub, struct task_struct, sibling);
printk("==== %s [%d]\n", task->comm, task->pid);
}
printk("\n");
}
}
/* Essa função é chamada quando o módulo é carregado. */
int hello_init(void){
printk(KERN_INFO "----->Hello!<-----\n");
print_process();
return 0;
}
/* Essa função é chamada quando o módulo é removido. */
void hello_exit(void){
printk(KERN_INFO "----->Tchau!<-----\n");
}
/* Macros para o registro dos pontos de entrada e saída do módulo. */
module_init(hello_init);
module_exit(hello_exit);
MODULE_LICENSE("MIT");
MODULE_DESCRIPTION("Sistemas Operecionais");
MODULE_AUTHOR("Belem");