Search Results

4
votes

Closing/cleaning up “mixed” file descriptors / sockets.

From man fdopen: The file descriptor is not dup’ed, and will be closed when the stream created by fdopen() is closed So I would just use fclose(), w …
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 …
5
votes

How to simulate exceptions in C with goto?

If typing the IFs is the problem, you could use a macro, like: #define trans_rcv_CHK do { \ if (!trans_rcv()) \ { \ goto abort_code; \ } \ } while(0) …
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: …
1
vote

web application image processing

Have a look at ImageMagick and gd. They have bindings to a lot of higher lev …
3
votes

Good school-type projects or assignments for (re)-learning C?

Some ideas for larger programs. You said similar to class assignments, so they are educative but not very useful :-) Create a simple shell, which can be used to start other program …
3
votes

C: Bus Error using different compilation arguments

The termination condition of your recursive function o is broken. The array of strings is not null terminated, why should it be? Why not just use a simple for there, inste …
0
votes

C Main Loop without 100% cpu

If I understood right, you said in the comments that DONE can be changed from other threads. If so, condition variables make sense. With pthreads, one would do: In the thread that waits: …
1
vote

Setting TCP Retransmission Timeout in C

In Linux, you can try playing with the TCP_WINDOW_CLAMP and the other options from http://lxr.linux.n …
3
votes

shared objects within a struct: between a calling program and library (in c)

In general, it's important that the library documents the 'contract' it makes with the applications that are using its service. The library writer documents all the allocations made by the library …
1
vote

sample code or projects using simple reference counter in C

XMLRPC-c and json-c are examples of C libraries that use reference cou …
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 …