I have my own POSIX application which starts a child process. I want the parent process to be notified with the names of all files the child process reads or writes, as well as the file names of any c
I have an image generator which would benefit from running in threads. I am intending to use POSIX threads, and have written some mock up code based on https://computing.llnl.gov/tutorials/pthreads/#C
I\'m an experienced programmer in .Net languages but I have not almost any work experience in C++ or C development.
I\'m using a open-source library for i2c bus actions. This library frequently uses a function to obtain an actual time-stamp with millisecond resolution.
I have a program (jhead) that compiles with very few tweaks for both Windows and generic Unix variants.From time to time, windows users ask if it can be modified to also set the \"creation date/time\"
One can use poll/select when writing a server that can service multiple clients all in the same thread. select and poll, however need a file descriptor to work. For this reason, I am uncertain how to
Could someone please explain the开发者_StackOverflow社区 differences between POSIX sockets and BSD sockets?As reported in http://www.openss7.org/papers/strsock/sockimp.pdf:
I am migrating a L开发者_Python百科ynxOS program to an ubuntu distribution and gcc 4.1.3 I am almost done but I have a problem, I am receiving SIGALRM signal which forces my program to exit. I dont k
I need to write a small file serving component for web server. There are lots of issues serving files. Because \"as-is\" serving as big security hole, like this
I\'m playing around开发者_运维百科 with mkstemp(), which provides a file descriptor, but I want to generate formatted output via fprintf(). Is there an easy way to transform the file descriptor provid