-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi All,
I am 6 months experience in Android, use to develop simple UI based application. Now i want to write application targeting the Android core Kernel.For example i want to develop a Framework which is not present in Android.To achieve that we have to write the code for the Kernel. I dont know…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, this is for an assignment at school, where I need to determine the size of the processes on the system using a system call. My code is as follows:
...
struct task_struct *p;
struct vm_area_struct *v;
struct mm_struct *m;
read_lock(&tasklist_lock);
for_each_process(p) {
printk("%ld\n"…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a Linux kernel module M1 which exports a symbol S1. When I insmod M1.ko, I can see S1 in /proc/kallsyms. I use S1 in another kernel module M2. When I compile and insert module M2, I get message in dmesg saying "Unknown symbol in module S1".
I am stumped. Can someone please tell me what is…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have been programming in C for a couple of years in Linux. Now I want to work on linux kernel and contribute to kernel, if possible. I have been looking on the internet for the information about a starting point but I couldn't find one. So can any one please tell me where to begin?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In linux kernel programming, is there a way to check if a particular file descriptor is in use for a given process or if it's available?
>>> More