0
votes
What makes a pthread defunct ?
Not the most elegant design but maybe you could block the main thread before exiting with:
while(1) {
pause();
}
Then you can install a signal handler for …
0
votes
Low energy, low cost 24/7 hardware linux box?
A very low-energy and low-cost solution would be the Asus wl-500 gP. It doesn't have SSD, …
1
vote
Content for Linux Operating Systems Class
The networking sub-system is also quite interesting. You could follow a packet as it goes from the socket system call to the wire and the other way around.
Fun assignments could be:
…
2
votes
Per thread CPU statistics in Linux
getrusage(2) with RUSAGE_THREAD. From the man page:
int getrusage(int who, struct rusage *usage);
getrusage() returns resource usage measures for who, which can be one of the follo …
