[uClinux-dev] system call return incorrect value

2007-07-05 Thread senitenmert
hi all, i do in my application some call to a script with the function system(). This function return normally in case the script is executed, the return value of the script. But i do several test, and the function system never return a valid value. For example : iResult = system(./script); and

[uClinux-dev] Continuous memory

2007-07-05 Thread Bou
Hi all, assume that you have a linux kernel with MMU. When you are trying to malloc() for a given size (1KB), the memory returned to you is continuous for your application, e.g you get a pointer to 0x1000 and the memory you have been given is 0x1000-0x1400 On the RAM chip

Re: [uClinux-dev] insmod wlan_ccmp problem within uclinux

2007-07-05 Thread Doug Kehn
Hi Advan, --- advan wrote: hello,everyone . I meet a strange problem within uclinux upon ixp425 platform , I insmod all madwifi modules for atheros chip , when I insmod 'wlan_ccmp.o' , there's such information as below: Using /lib/modules/2.4.31-uc0/kernel/drivers/net/wlan_ccmp.o

Re: [uClinux-dev] Continuous memory

2007-07-05 Thread Greg Ungerer
Hi Bou, Bou wrote: assume that you have a linux kernel with MMU. When you are trying to malloc() for a given size (1KB), the memory returned to you is continuous for your application, e.g you get a pointer to 0x1000 and the memory you have been given is 0x1000-0x1400 On the