segfault on memory intensive programs

2006-03-29 Thread Pete
t nothing seems to prevent the application for segfaulting under cygwin when N=600. Any ideas on how I can make this program not crash under cygwin for high matrix rank? VC++ and java can do it. I'm sure cygwin can too. Thanks. Pete __ Do

RE: segfault on memory intensive programs

2006-03-30 Thread Pete
--- Dave Korn <[EMAIL PROTECTED]> wrote: > On 29 March 2006 21:22, Pete wrote: > > > I have some benchmarkign code > > > > #define N 600 // Matrix rank > > #define ITERATIONS 2000 > > > > > > > > int main( void ) > >

Re: segfault on memory intensive programs

2006-03-30 Thread Pete
bit); if (x) sum += bit; bit >>= 1; } printf("%08x bytes (%.1fMb)\n", sum, sum/1024.0/1024.0); return 0; } It reports back 1536 MB. Very strange! The registry setting appears to not be having an effect. Thanks again, Pete __

RE: segfault on memory intensive programs

2006-03-30 Thread Pete
--- Dave Korn <[EMAIL PROTECTED]> wrote: > On 30 March 2006 14:34, Pete wrote: > > > The executable is produced with: > > > > $ make > > g++ -W -Wall -O9 -funroll-loops -mtune=pentium4 > -c > > -o matrix_mult_r.o matrix_mult_r.cc > > H

Re: [FAQ alert] RE: segfault on memory intensive programs

2006-03-30 Thread Pete
in every Makefile I write (and comment it out when I take my code home to work on it at night on my Linux box). Thanks! Pete __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -- Unsubscribe i

Re: SEGV in conv_path_list_buf_size with xemacs-21.5-b13 and cygwin-1.3.22-1

2003-06-06 Thread Pete McCann
quot;nofollow" which looks suspicious: 23849768. Was this intended for use as a boolean flag? The caller seemed to pass in 0. I note that all calls to stat_worker have 3 arguments whereas the prototype has 4 formal arguments with the last one defaulted: from winsup.h: int __stdcall stat_worker (const char *name, struct __s

SEGV in conv_path_list_buf_size with xemacs-21.5-b13 and cygwin-1.3.22-1

2003-06-04 Thread Pete McCann
malized_path)) + 100; return size; which is causing the problem. If I understand correctly, this should be accessing pc.normalized_path (to_posix = false). I posted this question to the xemacs list (with less debugging info) and didn't get much help, other than a suggestion t

Re: SEGV in conv_path_list_buf_size with xemacs-21.5-b13 and cygwin-1.3.22-1

2003-06-05 Thread Pete McCann
rker()) that looks similar to what we saw before (it accesses fh->get_win32_name()): if (!res && fh->get_device () != FH_SOCKET) { if (!buf->st_ino) buf->st_ino = hash_path_name (0, fh->get_win32_name ()); if (!buf->st_dev)

Quick question

2002-12-08 Thread Pete Gonzalez
f the old distribution? Thanks, -Pete -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/

Cygwin question - hopefully a quickie

2002-12-11 Thread Harter, Pete
;ex"  (batch vi editor) command.   I've used Cygwin (again, I don't know the source) before on the Win NT environment, and it recognized the "ex" command OK. What can I use as a substitute for the "ex" command? Pete Harte

License question

2003-03-09 Thread Pete Nordquist
tanding is that such linking is not legally possible. Could someone explain this seeming contradiction to me? Thank you, Pete Nordquist Assistant Professor of Computer Science Southern Oregon University [EMAIL PROTECTED] 541/552-6148 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-

RE: License question

2003-03-10 Thread Pete Nordquist
text you quoted below certainly seems to cover my question, but I can't find this text in either the GPL or the LGPL. Have I just missed it in the GPL and LGPL, or should I be looking somewhere else for this text? Thank you for your consideration, Pete Nordquist Assistant Professor of Compu

RE: License question

2003-03-11 Thread Pete Nordquist
I found the text where you suggested. Thank you again, Pete Nordquist Assistant Professor of Computer Science Southern Oregon University [EMAIL PROTECTED] 541/552-6148 -Original Message- From: Christopher Faylor [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 12:30 PM To

GNU make and VPATH problems

2004-01-21 Thread Pete Flugstad
ermissions on the Linux dirs are identical and they all appear identical on the Windows box. So, before I start trying to debug GNU make, has anyone seen anything like this? I'll work on recreating the problem with a simplified setup, so I can post an example here, but I'm h

Re: GNU make and VPATH problems

2004-01-22 Thread Pete Flugstad
Pete Flugstad wrote: So, before I start trying to debug GNU make, has anyone seen anything like this? I'll work on recreating the problem with a simplified setup, so I can post an example here, but I'm hoping someones seen this before. Getting no response, I downloaded the GNU m

Re: SEGV in conv_path_list_buf_size with xemacs-21.5-b13 and cygwin-1.3.22-1

2003-09-04 Thread Pete McCann
sues is causing this, why would it always fail in exactly the same place? I would think other memory allocations would sometimes run into problems. In any case, some checking of the return value from cstrdup() at path.cc line 764 would be appreciated. What's the best way to track this down? -Pete -- 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/

Re: SEGV in conv_path_list_buf_size with xemacs-21.5-b13 and cygwin-snapshot-20030904-1

2003-09-09 Thread Pete McCann
, name = 0x61040b3b "fork_stupidity", func = 0x61040b20 "void slow_pid_reuse(void*)", ln = 339, inherited = false, pid = 2356, next = 0x0}, {h = 0x31c, name = 0x61040b3b "fork_stupidity", func = 0x61040b20 "void slow_pid_reuse(void

Re: SEGV in conv_path_list_buf_size with xemacs-21.5-b13 and cygwin-snapshot-20030904-1

2003-09-12 Thread Pete McCann
Corinna Vinschen writes: > On Tue, Sep 09, 2003 at 03:33:42PM -0500, Pete McCann wrote: > > > > Hi, > > > > After some more hunting, I now understand there is a difference > > between the cygwin heap and the user heap. My problem is that I'm > > ru

Re: SEGV in conv_path_list_buf_size with xemacs-21.5-b13 and cygwin-snapshot-20030904-1

2003-09-12 Thread Pete McCann
(responding to my own post) Pete McCann writes: > > Corinna Vinschen writes: > > > On Tue, Sep 09, 2003 at 03:33:42PM -0500, Pete McCann wrote: > > > > > > Hi, > > > > > > After some more hunting, I now understand there is a differen

TEXT mode, BINARY mode default file opening

2005-01-24 Thread Pete James
t, I hope some of you out there have some good thoughts, and ideas for me to try. Thanks Pete -- 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/

Fetchmail/procmail problem after upgrading

2005-07-22 Thread Pete McCann
ries to use it. What should I try? I don't know how to revert the system back to its old state. I tried the previous versions of fetchmail & procmail available under the cygwin setup program and they failed in the same way. -Pete -- Unsubscribe info: http://cygwin.com/ml/#unsubsc

5.4-3 libncurses-devel header files problem

2005-09-28 Thread Pete Klosterman
Hi, Installing the 5.4-3 libncurses-devel package did not produce the associated header files - in /usr/include/, there was a symlink from curses.h to ncurses/curses.h but there was no ncurses/ directory. Installing 5.4-2 libncurses-devel worked. Pete -- Unsubscribe info: http

Subversion can't move ./.svn/tmp/entries

2006-09-05 Thread Pete Gontier
file system indexing or anti-virus software, but I haven't got any of that installed. Brane's analysis at the bottom of the web page in question seems worth pondering for brains more qualified than mine. Any ideas? ‹ Pete Gontier <http://www.m-audio

Re: Subversion can't move ./.svn/tmp/entries

2006-09-05 Thread Pete Gontier
Off-list, a smart person suggested I turn off icon overlays in TortoiseSVN, and this did the trick. Thanks muchly, smart person! I did like them icon overlays, but I reckon I'll have to go without. --- From: Pete Go

diff3.exe: *** recreate_mmaps_after_fork_failed

2006-09-13 Thread Pete Forman
ere are several related reports on this list but none seems to have an appropriate solution. -- Pete Forman-./\.- Disclaimer: This post is originated WesternGeco -./\.- by myself and does not represent [EMAIL PROTECTED]-./\.- the opinion of Schlumberger or htt

using Cygwin (-mno-cygwin) to JNI to a 3rd party DLL

2007-05-01 Thread Pete Flugstad
Alternatively, what is the right place for this question - the main GCC mailing list? Or maybe it's a Sun/JVM question? Thanks, Pete -- 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/

Re: using Cygwin (-mno-cygwin) to JNI to a 3rd party DLL

2007-05-01 Thread Pete Flugstad
s *never* the right place to ask anything relating to debugging program crashes, unless you can actually identify a specific compiler bug (which it never is, 99.999% of the time.) Good to know. Thanks! Pete -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem repor

RE: Mac, cygwin, flash

2007-12-28 Thread Pete Kockritz
On Dec 27, 2007 12:53 AM, Barbara Shirtcliff <[EMAIL PROTECTED]> wrote: > Is there a way for me to acquire a working cygwin dist from here, from > my speedy old powerbook G4? > > Cheers, > Bar Are you looking for something that _runs_ on your Powerbook, or just the ability to DL cygwin to be in

Re: Observation: setting HOME to "/" can lead to slow cygwin

2008-01-08 Thread Pete Forman
tting HOME to "/." if you do not want to go the "/home/gwyner" route. -- Pete Forman-./\.- Disclaimer: This post is originated WesternGeco -./\.- by myself and does not represent [EMAIL PROTECTED]-./\.- the o

Use of Dual Core causes random failures building OpenJDK

2009-11-16 Thread Pete Brunet
nment variables) Attached is my cygcheck.out file. -- *Pete Brunet* a11ysoft - Accessibility Architecture and Development (512) 238-6967 (work), (512) 689-4155 (cell) Skype: pete.brunet IM: ptbrunet (AOL, Google), ptbru...@live.com

Re: Use of Dual Core causes random failures building OpenJDK

2009-11-17 Thread Pete Brunet
Thanks Dave, What is the proper way to upgrade the DLL? Dave Korn wrote: > Pete Brunet wrote: > >> I've been trying to build OpenJDK for several weeks now and have never >> been able to get to the end of the build because of random failures. >> Last night I had a

[Fwd: Re: Use of Dual Core causes random failures building OpenJDK]

2009-11-17 Thread Pete Brunet
error while loading shared libraries: cygintl-2.dll: cannot open shared object file: No such file or directory Also, the 1.7 install is no longer asking for DOS vs UNIX line endings. I need to use DOS line endings. How to I set that with the new cygwin? Thanks, Pete --- Dave Korn wrote: > Pet

Re: Use of Dual Core causes random failures building OpenJDK

2009-11-17 Thread Pete Brunet
I solved the first problem by copying cygintl-2.dll from my 1.5 cygwin/bin. Pete Brunet wrote: > Thnaks Dave, I've installed 1.7. The OpenJDK build requires > backleveling make from 3.81 to 3.80. When I do that on cygwin 1.7 I get > the following: > > p...@bevo ~ &g

Re: Use of Dual Core causes random failures building OpenJDK

2009-11-17 Thread Pete Brunet
This may solve the second one. One selection google found suggests editing cygwin.bat to add set SHELLOPTS=igncr after the @echo off in cygwin.bat Hopefully this is the same as choosing DOS line endings in the cygwin 1.5 setup program. Pete --- Pete Brunet wrote: > I solved the first prob

Re: Use of Dual Core causes random failures building OpenJDK

2009-11-17 Thread Pete Brunet
Well I guess it's not the same. I got $'\r': command not found when running a script For now I'll just dos2unix that file and figure the rest out later. Pete --- Pete Brunet wrote: > This may solve the second one. One selection google found suggests > editing

Re: Use of Dual Core causes random failures building OpenJDK

2009-11-17 Thread Pete Brunet
>$'\r': command not found Please ignore my post about this. That was the result of using a different bat file (not cygwin.bat) that I use to start an OpenJDK build job and it hadn't yet been modified to set SHELLOPTS=igncr Pete --- Pete Brunet wrote: > Well I guess it&#

Re: Use of Dual Core causes random failures building OpenJDK

2009-11-17 Thread Pete Brunet
>$'\r': command not found Please ignore my post about this. That was the result of using a different bat file (not cygwin.bat) that I use to start an OpenJDK build job and it hadn't yet been modified to set SHELLOPTS=igncr Pete --- Pete Brunet wrote: > Well I guess it&#

Re: Use of Dual Core causes random failures building OpenJDK

2009-11-17 Thread Pete Brunet
Dave, Migrating to 1.7 didn't help. I'll disable dual core for now. -Pete --- Dave Korn wrote: > Pete Brunet wrote: > >> Thanks Dave, What is the proper way to upgrade the DLL? >> > > The "proper" way? Heh: > > #1. Read t

unzip failure in 1.5 and 1.6 building OpenJDK

2009-11-18 Thread Pete Brunet
PU is running with a single core (via BIOS setting). Attached are cygcheck dumps from both versions. -- *Pete Brunet* a11ysoft - Accessibility Architecture and Development (512) 238-6967 (work), (512) 689-4155 (cell) Skype: pete.b

Re: unzip failure in 1.5 and 1.6 building OpenJDK

2009-11-19 Thread Pete Brunet
Thanks to Christopher for mentioning the BLODA earlier today. The problem went away by disabling Norton 360. --- Pete Brunet wrote: > I'm encountering unzip failures attempting to build the OpenJDK. I've > tried with both 1.6 and 1.7. > > This happened on 1.6: > >

Re: Use of Dual Core causes random failures building OpenJDK

2009-11-19 Thread Pete Brunet
This problem went away by disabling Norton 360. --- Pete Brunet wrote: > I've been trying to build OpenJDK for several weeks now and have never > been able to get to the end of the build because of random failures. > Last night I had a hunch to turn off one of the cores in BIOS and

kill of windows process hangs

2012-09-16 Thread Pete Wyckoff
ood-old bash kill did. I either updated p4d or cygwin itself in the last two months, or both, and now no luck. I can kill p4d with Task Manager. I would be happy to have another way to kill the task. Thanks for any advice, -- Pete Cygwin Configuration Diagnostics Current System Ti

w32api/include/winbase.h rev. 1.101, OVERLAPPED and -std=c99

2011-03-03 Thread Pete Batard
to avoid. Also, the problem seems to have now spread to the latest MinGW32 now (are they reusing cygwin's winbase.h?). We would appreciate if you could look into this and ensure that winbase.h is C99 compliant. Regards, /Pete [1] http://cygwin.com/cgi-bin/cvsweb.cgi/src/winsup/w32api/

Re: w32api/include/winbase.h rev. 1.101, OVERLAPPED and -std=c99

2011-03-03 Thread Pete Batard
pure cygwin yes, but we wanted a common abstracted polling for asynchronous transfers on Windows platforms, since poll() it's not available in MSVC, and the only option then is to use an OVERLAPPED. Anyway, thanks for the reply. Regards, /Pete -- Problem reports: http://cygwin.c

Create file fails on network drives in cygwin-1.7.9-1

2011-06-16 Thread Pete Forman
7.9-1. The release notes for 1.7.9 include "Slightly speed up file access when creating new files". $ touch foo.txt touch: cannot touch `foo.txt': Permission denied # created foo.txt with native emacs $ echo hello > foo.txt $ echo hello > bar.txt bash: bar.txt: Perm

Re: Create file fails on network drives in cygwin-1.7.9-1

2011-06-17 Thread Pete Forman
/cygdrive/n type ntfs (binary,posix=0,user,noumount,auto) V: on /cygdrive/v type ntfs (binary,posix=0,user,noumount,auto) W: on /cygdrive/w type ntfs (binary,posix=0,user,noumount,auto) X: on /cygdrive/x type ntfs (binary,posix=0,user,noumount,auto) Y: on /cygdrive/y type ntfs (binary,posix=0

Re: Create file fails on network drives in cygwin-1.7.9-1

2011-06-17 Thread Pete Forman
prefix > to use noacl on all drives.  See the User's Guide for how to do it. I've just sat down with the admin and confirmed that I do have Full Control on the network drive. Creating and modifying files is working fine outside Cygwin. chmod is failing with Permission denied in the sam

How to bring ddrescue up to date?

2015-12-13 Thread Webbed . Pete
generate my own update? * Are multiple maintainers allowed for a package? Thanks! Pete -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml

Re: How to bring ddrescue up to date?

2015-12-14 Thread Webbed . Pete
Thanks, Christian! Pete -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple

Re: strange cygwin sshd user generated (user name includes machine name)

2016-03-31 Thread Pete Moore
to the powershell script was simply: $env:LOGONSERVER = "\\" + $env:COMPUTERNAME I can confirm this fix works! Thanks again to Brian and Ben. =) Pete -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://

opencv python bindings

2018-01-17 Thread Pete Flugstad
2 bindings were to be built. Did they just not get package, or is it in a different package I'm not seeing? Pip couldn't find a version that works either (not surprising). Thanks, Pete -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.co

Re: opencv python bindings

2018-01-17 Thread Pete Flugstad
On Wed, Jan 17, 2018 at 12:48 PM, szgyg wrote: > Different packages, python2-cv2 and python3-cv2. > Oh man, I'm such an idiot. I was looking all over for opencv packages, didn't think to look for cv2 packages. In any case, Thanks! Pete -- Problem reports: h