Re: [uClinux-dev] Avahi AutoIp for No-MMU systems with ucLinux

2012-08-29 Thread Gavin Lambert
Quoth Michael Schnell: > "Real fork behavior" also includes creating threads (parent and child > share memory, open files and other stuff). But this is better achieved > using Posix Threads provided by ptheradlib. I suppose pthreadlib is > available for nearly all archs. No. I think you're thinki

[uClinux-dev] BF526 EZBRD / Linux version 3.0.8-ADI-2011R1 : suspend to mem?

2012-08-29 Thread g...@novadsp.com
Apologies if this is the wrong list. Directions appreciated if so. I'm running Linux version 3.0.8-ADI-2011R1 on a standard BF526 EZBRD. I'm trying to establish if suspend to memory is working in general on the 526 or, for some reason, simply not on this board. The boot log indicates the RTC

Re: [uClinux-dev] Avahi AutoIp for No-MMU systems with ucLinux

2012-08-29 Thread Michael Schnell
On 08/29/2012 09:42 AM, Gavin Lambert wrote: To get "real" fork behaviour out of vfork (such that both parent and child are running simultaneously), you must make the child process call one of the exec functions (usually as soon as possible after the vfork). "Real fork behavior" also includes cr

Re: [uClinux-dev] Avahi AutoIp for No-MMU systems with ucLinux

2012-08-29 Thread Gavin Lambert
Quoth Muthuselvan Sivam: > We're having a function call fork_dispatcher inside a function loop() in > the avahi-autoip main.c file, which will create a child process. This > child will create a pipe to read the IPv4LL address from the parent, > which writes the address, interface name etc, into

[uClinux-dev] Avahi AutoIp for No-MMU systems with ucLinux

2012-08-29 Thread Muthuselvan Sivam
Hi, We're running ucLinux on a coldfire processor with no MMU. And we're trying to run avahi to get autoip feature. And currently I'm facing the below issue. We're having a function call fork_dispatcher inside a function loop() in the avahi-autoip main.c file, which will create a child process.