X-Recipient: archive-cygwin AT delorie DOT com X-Spam-Check-By: sourceware.org Message-ID: <478A4CEA.8080309@free.fr> Date: Sun, 13 Jan 2008 18:39:54 +0100 From: Marc/MDPI314 User-Agent: Thunderbird 2.0.0.9 (Windows/20071031) MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: Process ends unexpectly References: <4787F4D9 DOT 6060406 AT free DOT fr> <47885EF1 DOT 7050600 AT cygwin DOT com> <478897FB DOT 3000706 AT free DOT fr> <024e01c8554a$b01f95e0$2e08a8c0 AT CAM DOT ARTIMI DOT COM> <478A0859 DOT 5030205 AT free DOT fr> <028f01c855f6$e8465ba0$2e08a8c0 AT CAM DOT ARTIMI DOT COM> <478A34C9 DOT 8030501 AT free DOT fr> In-Reply-To: <478A34C9.8030501@free.fr> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Note-from-DJ: This may be spam > >>> Okay, I will try to identify the "Dodgy application" and I keep you >>> informed >>> (because the only application listed I had was Logitech webcam , but >>> cygwin still crashes after webcam uninstallation & suppression of all >>> logitech files) >>> >> >> >> I wonder if it uninstalled fully? It is not unknown for a package >> to leave a service behind if that same service might be used by other >> packages from the same manufacturer (for example, norton make many >> packages such as antivirus, antispam, firewall... they all make use >> of a shared auto-update service. When you uninstall one, it leaves >> the autoupdate service installed in case the other packages might be >> using it). So I suggest it is worth checking in control panel -> >> administrative tools -> services to see if it still shows the >> "logitech process monitor" service; that's what causes the actual >> problem with cygwin. If it is there, you could try stopping and >> disabling it to see if that fixes cygwin. >> >> >> >> cheers, >> DaveK >> > In fact, I never had this Logitech service. But, as I've a Logitech > webcam I thought the problem could be linked with it. > I've already searched for any service, files or windows registry entry > with "Logitech" name ... unsuccessful. > Moreover, I have the same problem at my office computer, which has'nt > any webcam device ^^ > > Just in case, do you keep your Windows XP up-to-date with automatic > updates ? > I experimented some explorer or Visual Studio crashes since the lasts > windows XP updates.... perhaps cygwin is also affected.... > I'm currently trying to update windows XP in a virtual machine, but it > takes time .... > > I keep you informed, > > MDPI314 > Sorry I forgot the mailing list ^^ I was only answering to Dave Korn .... Just a message to notice that you must be patient for my script & program test to crash ..... Previously I have waited for 1150 loops to see gcc crash. (And "rm" command failed 6 times 'only' ^^) I'm still installing lot of programs on my virtual machine but the script doesn't want to fail :-( grrrr I'll find it.......... My new script (with counters) : #!/bin/sh ok=0 fails=0 while gcc prog.c -o prog.exe ; do if ! rm prog.exe; then echo "** RM FAILS **" fails="$(( $fails + 1 ))" else ok="$(( $ok + 1 ))" fi; echo "ok $ok , fails $fails" done; echo "fails !" -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/