Search Results

1
vote

untangling .h dependencies

As you have the opportunity, you should refactor the code to reduce includes that are too large, however that assumes you can achieve some sort of package cohesion. If you disentangle things just …
3
votes

How can I detect hung processes in Linux using C?

Under linux the way to do this is by examining the contents of /proc/[PID]/* a good one-stop location would be /proc/*/status. Its first two lines are: Name: [program name] State: R (ru …
11
votes

C multi-line macro: do/while(0) vs scope block

Answer found in google's first hit: http://bytes.com/groups/c/219859-do-while-0-macro-substitutions …
1
vote

How do I get millis since midnight UTC in C?

You use gettimeofday(2) which is defined in POSIX.1 and BSD. It returns seconds and microseconds as defined in struct timeval from sys/time.h. …
5
votes

How to enumerate all IP addresses attached to a machine, in POSIX C?

This can only be done in an operating system dependent fashion. You could try parsing the output of 'iptables', but the right answer for linux is to use ioctl. …