6
votes
2answers
329 views
Does Linux provide a monotonically increasing clock to applications
Does Linux/Unix/Posix provide an API to user-space applications to access a monotonically increasing clock, with centisecond to millisecond accuracy?
On Linux, /proc/uptime provides a strin …
6
votes
should I free pointer returned by getpwuid() in Linux?
No. You do not need to free the result. You can only call free(3) on pointers allocated on the heap with malloc(3), calloc(3) or realloc(3).
Static data is part of a program's data or bss s …
2
votes
Checking network status and controlling PPP in a program
You can use the ip-up script functionality of pppd to have it execute a program when the IP interface is up and ready. Details are in the pppd(8) man page - search for "ip-up".
To restart p …
1
vote
How to use strace ?
After you've finished learning strace, have a look at ltrace. It is similar except it applies to library calls, not system calls.
…
2
votes
Linux / C++: Get the IP Address of local computer
Further to what Steve Baker has said, you can find a description of the SIOCGIFCONF ioctl in the netdevice(7) man page.
Onc …
2
votes
What linux shell command returns a part of a string?
expr(1) has a substr subcommand:
expr substr string position length
This may be useful if you don't have bash (perhaps embedded Linux) and you don't want the extra …
0
votes
2
votes
How to bind a key to sigkill in bash?
I don't think there is any key you can use to send a SIGKILL.
Will SIGQUIT do instead? If you are not catching that, the default is to core dump the process. By default this is ^\. You can …
5
votes
Static functions in Linux device driver?
Functions declared static are not visible outside the translation unit they are defined in (a translation unit is basically a .c file). If a function does not need to be called from outside the fil …
2
votes
How to implement a thread safe timer on linux?
Use usleep(3) or sleep(3) in your thread. This will block the thread until the timeout expires.
If you need to wait on I/O and have a timer expire before any I/O is ready, use select(2), p …
0
votes
Reliable UDP
I'm not sure that there is a simple way to modify the behaviour of the existing UDP code via a new module.
What would be simpler is to take the UDP code (net/ipv4/udp.c) and create a new mo …
1
vote
1
vote
after ssh to a hosting company, at the shell, is there a way to tell what platform it is?
/etc/issue usually contains the distibution release version and name.
…
0
votes
Linux - communicating with a process? rejoin process in action?
If you know ahead of time that you want to do this, use screen(1) and run your server in the foreground in a screen session. You will be able to detach from your screen session and have the process …
3
votes
about fork and execve system call
The reason for the two-step is flexibility. Between the two steps you can modify the context of the child process that the newly exec'ed program will inherit.
Some things you may want to ch …
