Search Results

0
votes

Deleting a middle node from a single linked list when pointer to the previous node is not available

You could do delayed delinking where you set nodes to be delinked out of the list with a flag and then delete them on the next proper traversal. Nodes set to be delinked would need to be properly …
2
votes

how could I intercept linux sys calls?

Why can't you / don't want to use the LD_PRELOAD trick? Example code here: /* * File: soft_atimes.c * Author: D.J. Capelis * * Compile: * gcc -fPIC -c -o soft_atimes.o …
2
votes

how could I intercept linux sys calls?

I don't have the syntax to do this gracefully with an LKM offhand, but this article provides a good overview of what you'd need to do: …