Cygwin on symbian OS

2010-04-09 Thread Anonymous user
Hi, I've been cygwin user for many years. I was thinking if there is a symbian port of cygwin. It would be exciting for me at least to run cygwin shell, other unix applications, including X windows on a handheld symbian smart phones. Has anyone tried such a port? Best Regards to all, <> --

Re: Changing interactive shell from Bash to Zsh

2010-02-09 Thread Anonymous bin ich
Hi! Thanks! On a second thought, I do think I chose the wrong list. Sorry... The problem with replacing bash with zsh in passwd is that somehow /etc/zprofile is not read (and $SHELL is not set, resulting in different problems). I will read further into this... thanks for the pointer. Until then,

RE: Getting 'Bad file descriptor' error with 1.5.24-2

2008-01-11 Thread anonymous anonymous
Hello, Sorry, I reactivate this thread (http://cygwin.com/ml/cygwin/2007-03/msg00029.html) but I have exactly the same error with process make. bash: cannot duplicate fd 31 to fd 0: Bad file descriptor I ran my process make under strace (strace -ostrace.out bash -c make) and got this (have a l

Problems with bind and UDP server

2006-09-27 Thread Anonymous
Hello, I saw these series of posts on UDP - was there a conclusion to them? http://cygwin.com/ml/cygwin/2006-06/msg00701.html http://cygwin.com/ml/cygwin/2006-06/msg00703.html http://cygwin.com/ml/cygwin/2006-06/msg00705.html http://cygwin.com/ml/cygwin/2006-06/msg00706.html I compile and run ne

Re: Serious performance problems (new snapshot has some performance improvement)

2005-05-30 Thread Anonymous
There is no reason to expect any improvement in mingw programs from my change. Yeah i figured that one out. ;) I was just trying to rationalize the change that I did show in the original report. My timings don't show great improvement, and a 1 second margin of error due to windows caching doe

Re: Serious performance problems (new snapshot has some performance improvement)

2005-05-30 Thread Anonymous
My System: #Set-up: $ g++ cygspd.cc -o cygspd-basic $ g++ -O7 cygspd.cc -o cygspd-o7 $ g++ -fno-exceptions cygspd.cc -o cygspd-ne $ g++ -O7 -fno-exceptions cygspd.cc -o cygspd-ne-o7 $ g++ -mno-cygwin cygspd.cc -o cygspd-mingw $ g++ -O7 -mno-cygwin cygspd.cc -o cygspd-mingw-o7 $ g++ -fno-exception

Re: dlopen doesn't use LD_LIBRARY_PATH ( was dlopen and cygcheck inconsistency)

2005-05-30 Thread Anonymous
this issue is still un-resolved. Contrary to what cgf says, dlopen doesn't care about LD_LIBRARY_PATH while opening dependent DLLs of its argument. It opens the DLL if the depedent DLLs are found in the $PATH. Your keyword is dependent. When one dll depends on another in windows, it uses window

Re: Reading "raw" disk greater than 1 terabyte

2005-04-19 Thread Anonymous
> So you're using the Windows filename instead of the POSIX filename > which Cygwin provides? Too bad. > > I suggest reading the appropriate chapter in the Cygwin user guide I suggest reading the OP's whole message. He tries using *both*windows pathnames and unix pathnames. -- Unsubscribe inf

problems with mprotect()

2002-09-23 Thread Anonymous
Hi, I'm having segfaults with the following piece of code (working from WinXP SP1 using latest Cygwin release): char * AllocBoundedArray(int size) { int pgSize = getpagesize(); char *ptr = new char[pgSize * 2 + size]; // before mprotect(ptr, pgSize, 0); //