Files
linux-kernel-module-cheat/kernel_module/README.md
2017-06-18 09:30:04 +01:00

29 lines
785 B
Markdown

# Kernel module
1. Modules
1. [module_init](module_init.c)
1. Debugging
1. [hello](hello.c)
1. [hello2](hello2.c)
1. [debugfs](debugfs.c)
1. [panic](panic.c)
1. [params](params.c)
1. [fops](fops.c)
1. [ioctl](ioctl.c)
1. [poll](poll.c)
1. [anonymous_inode](anonymous_inode.c)
1. Asynchronous
1. [workqueue](workqueue.c)
1. [sleep](sleep.c)
1. [kthread](kthread.c)
1. [kthreads](kthreads.c)
1. [schedule](schedule.c)
1. [timer](timer.c)
1. [work_from_work](work_from_work.c)
1. [irq](irq.c)
1. Module dependencies
1. [dep.c](dep.c)
1. [dep2.c](dep2.c)
1. [character_device](character_device.c)
1. [user](user/)