Tagged Questions
5
votes
3answers
958 views
ctags does not parse stdio.h properly
I am trying to use ctags with VIM, and I am a newbie to both. In order to test the extent to which ctags could be useful I decided to put it through a very simple test, namely to parse the headers in ...
3
votes
2answers
136 views
Please explain the use of ':' and a trailing ',' in this struct initialization C code
static struct file_operations memory_fops = {
open: memory_open, /* just a selector for the real open */
};
this is from mem.c file in uclinux
3
votes
3answers
368 views
How do I spawn a daemon in uClinux using vfork?
This would be easy with fork(), but I've got no MMU. I've heard that vfork() blocks the parent process until the child exits or executes exec(). How would I accomplish something like this?:
pid_t pid ...
1
vote
2answers
1k views
Lock a mutex multiple times in the same thread
I'm developing an application on an embedded linux OS (uClinux) and I need to be able to lock the mutex more than once (by the same thread).
I have a mutex and a mutexattr defined and initialized as ...