Tagged: c++

About c++ : Why-is-Linuxs-sendfile-incompatible-with-devzero

Question Detail why is sendfile incompatible with /dev/zero ? why does this code #include #include #include #include int main(){ int f1 = fileno(tmpfile()); int devzero = open(“/dev/zero”, O_RDONLY); if(f1 < 0 || devzero <...

About c++ : Ping-a-network-device-driver-from-another-PC

Question Detail I need to connect two PC with Network Device Driver. The snull driver (http://lwn.net/Kernel/LDD3/) work only into one PC. Could you help me? I have studied the cap.17 of the book “Linux...