Tagged Questions

9
votes
5answers
4k views

How can I get the source code for the linux utility tail?

this command is really very useful but where I can get the source code to see what is going on inside . thanks .
6
votes
5answers
2k views

Can I use boost on uclibc linux?

Does anyone have any experience with running C++ applications that use the boost libraries on uclibc-based systems? Is it even possible? Which C++ standard library would you use? Is uclibc++ usable ...
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
369 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 ...
0
votes
1answer
133 views

adding python packages to uClinux

I have distribution of uClinux, throught "menu config" I check python and compile("make"). I have python on my chip now. There is a binary executable file /bin/python. But what about python ...
0
votes
1answer
249 views

Convert Olson time zone file to TZ environment variables

We are using the "America/New_York" convention for the user to select the timezone, but in our resource constrained system, we must manually provide the actual TZ variable. For example, for New York, ...