C program to read mac address using WiFi interface name
If you need to get the mac address of certain wifi interface using C program, you can … Read more
If you need to get the mac address of certain wifi interface using C program, you can … Read more
Start ‘fdisk’. For me, the SD card reader/writer has the SD card show up on /dev/sdc. I … Read more
Electric Fence helps you detect two common programming bugs: software that overruns the boundaries of a malloc() memory … Read more
Major distribution kernels set the default value of /proc/sys/vm/overcommit_memory to zero, which means that processes can request … Read more
In our previous post, we understood “What is Out of Memory Killer ?” In this post, we … Read more
Each property has a name and value, and they are all in string format. Each process can … Read more
We tried to write a simple class driver framework which will create a directory in /sys/class, we … Read more
Following program prints the hexadecimal values of all the characters in any string. Currently we have used … Read more
Zombie process is the process which dies/finishes immediately and whose parent didn’t cares to handle the status … Read more
Below is simple process creation program using fork system call, fork return child’s process Id in main/parent … Read more
Splint is a tool for statically checking C programs for security vulnerabilities and coding mistakes. With minimal … Read more
Valgrind is an instrumentation framework for building dynamic analysis tools. There are Valgrind tools that can automatically … Read more