public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Qestion about Bash Fork Resource Temporily Unavailable More
@ 2005-07-01  9:27 Question NS
  2005-07-01 15:51 ` Larry Hall
  0 siblings, 1 reply; 25+ messages in thread
From: Question NS @ 2005-07-01  9:27 UTC (permalink / raw)
  To: twall, cygwin

[-- Attachment #1: Type: text/plain, Size: 3029 bytes --]

Dear Cygwin and Ns-2:

I always suffered "Bash Fork Resource Temporily
Unavailable More" while I tried to install Ns-2.27 in
Cygwin, it shows below, I have attached makefile of
TCLCL-1.15. However, while I installed Ns2.27 in
Cygwin in April 2004, everything went very well, and I
never had problem until this time I reinstall cygwin
again.

============================================================
* Build Tclcl-1.15
============================================================
No .configure file found in current directory
Continuing with default options...
checking build system type... i686-pc-cygwin
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking for gcc... gcc
checking for C compiler default output... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for executable suffix... .exe
checking for object suffix... o
checking whether we are using the GNU C compiler...
yes
checking whether gcc accepts -g... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler...
yes
checking whether g++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for string.h... yes
checking for main in -lXbsd... no
checking for socket in -lsocket... no
checking for gethostbyname in -lnsl... no
checking for dcgettext in -lintl... yes
checking for getnodebyname in -ldnet_stub... no
checking that g++ can handle -O2... no
checking standard STL is available... no
checking for ranlib... ranlib
checking for snprintf... yes
checking for ANSI C header files... (cached) yes
checking for strtoq... no
checking for strtoll... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... (cached) yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for long... yes
checking size of long... 4
checking for __int64_t... no
checking for long long... yes
checking for int64_t... no
checking which kind of 64-bit int to use... long long
C:\CYGWIN\bin\sh.exe (62888): *** thread handle not
set - 0x0<0x0>, Win32 error
1450
C:\CYGWIN\bin\sh.exe (62896): *** thread handle not
set - 0x0<0x0>, Win32 error
1450
C:\CYGWIN\bin\sh.exe (62888): *** thread handle not
set - 0x0<0x0>, Win32 error
1450
C:\CYGWIN\bin\sh.exe (62916): *** WFSO timed out after
longjmp
Signal 1
./configure: Cannot fork: Resource temporarily
unavailable
./configure: Cannot fork: Resource temporarily
unavailable
./configure: Cannot fork: Resource temporarily
unavailable
./configure: Cannot fork: Resource temporarily
unavailable
tclcl-1.15 configuration failed! Exiting
..../configure: Cannot fork: Resource t
emporarily unavailable

Your help is appreciated!

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

[-- Attachment #2: 2325580809-Makefile.in --]
[-- Type: application/octet-stream, Size: 6903 bytes --]

#
# Copyright (c) 1993-1994 The Regents of the University of California.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
#    must display the following acknowledgement:
#	This product includes software developed by the University of
#	California, Berkeley and the Network Research Group at
#	Lawrence Berkeley Laboratory.
# 4. Neither the name of the University nor of the Laboratory may be used
#    to endorse or promote products derived from this software without
#    specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# @(#) $Header: /cvsroot/otcl-tclcl/tclcl/Makefile.in,v 1.46 2003/07/29 18:15:09 xuanc Exp $ (LBL)
#

BLANK	= # make a blank space.  DO NOT add anything to this line

# The following will be redefined under Windows (see WIN32 lable below)
CC	= @CC@
CPP	= @CXX@
LINK	= $(CPP)
MKDEP	= ./conf/mkdep
TCLSH	= @V_TCLSH@
TCL2C	= ./tcl2c++
AR	= ar rc $(BLANK)

RANLIB	= @RANLIB@
INSTALL	= @INSTALL@
LN	= ln
TEST	= test
RM	= rm -f
PERL	= perl


CCOPT	= @V_CCOPT@
STATIC	= @V_STATIC@
LDFLAGS	= $(STATIC)
LDOUT	= -o $(BLANK)

DEFINE	= -DNO_TK @V_DEFINE@ @V_DEFINES@ @DEFS@

INCLUDES = \
	-I. @V_INCLUDES@

LIB	= \
	@V_LIBS@

CFLAGS	= $(CCOPT) $(DEFINE)

# Explicitly define compilation rules since SunOS 4's make doesn't like gcc.
# Also, gcc does not remove the .o before forking 'as', which can be a
# problem if you don't own the file but can write to the directory.
.SUFFIXES: .cc	# $(.SUFFIXES)

.cc.o:
	@rm -f $@
	$(CPP) -c $(CFLAGS) $(INCLUDES) -o $@ $*.cc

.c.o:
	@rm -f $@
	$(CC) -c $(CFLAGS) $(INCLUDES) -o $@ $*.c


GEN_DIR	= gen/
LIB_TCLCL = @V_ALL@
LIBRARY_TK = @V_LIBRARY_TK@
LIBRARY_TCL = @V_LIBRARY_TCL@


TCL_76_LIBRARY_FILES = \
	$(LIBRARY_TCL)/init.tcl
TCL_BASE_LIBRARY_FILES= \
	$(LIBRARY_TCL)/init.tcl \
	$(LIBRARY_TCL)/history.tcl \
	$(LIBRARY_TCL)/word.tcl
TCL_80_LIBRARY_FILES = \
	$(TCL_BASE_LIBRARY_FILES) \
	$(LIBRARY_TCL)/http2.0/http.tcl
TCL_81_LIBRARY_FILES = $(TCL_80_LIBRARY_FILES)
TCL_82_LIBRARY_FILES = \
	$(TCL_BASE_LIBRARY_FILES) \
	$(LIBRARY_TCL)/http2.1/http.tcl
TCL_83_LIBRARY_FILES = \
	$(TCL_BASE_LIBRARY_FILES) \
	$(LIBRARY_TCL)/http2.3/http.tcl
TCL_84_LIBRARY_FILES = \
        $(TCL_BASE_LIBRARY_FILES) \
	$(LIBRARY_TCL)/http2.4/http.tcl

TCL_LIBRARY_FILES = \
	@V_TCL_LIBRARY_FILES@

#TKDOSNAMES = \
#	$(LIBRARY_TK)/optionMenu.tcl \
#	$(LIBRARY_TK)/scrollbar.tcl
TKDOSNAMES = @V_TKDOSNAMES@

OBJ_COMPAT_C = 

# WIN32: uncomment the following line to be use with vc++ nmake
# !include <conf/makefile.win>

TK_LIBRARY_FILES = \
		$(TCL_LIBRARY_FILES) \
		$(LIBRARY_TK)/tk.tcl \
		$(LIBRARY_TK)/clrpick.tcl \
		$(LIBRARY_TK)/comdlg.tcl \
		$(LIBRARY_TK)/button.tcl \
		$(LIBRARY_TK)/dialog.tcl \
		$(LIBRARY_TK)/entry.tcl \
		$(LIBRARY_TK)/focus.tcl \
		$(LIBRARY_TK)/listbox.tcl \
		$(LIBRARY_TK)/menu.tcl \
		$(LIBRARY_TK)/palette.tcl \
		$(LIBRARY_TK)/scale.tcl \
		$(LIBRARY_TK)/tearoff.tcl \
		$(LIBRARY_TK)/text.tcl \
		$(LIBRARY_TK)/tkfbox.tcl \
		$(LIBRARY_TK)/msgbox.tcl \
		$(TKDOSNAMES)

CONSOLE_FILES = $(LIBRARY_TK)/console.tcl

OBJ_CC = Tcl.o Tcl2.o idlecallback.o iohandler.o timer.o rate-variable.o \
	tracedvar.o \
	embedded-tcl.o embedded-tk.o embedded-tclobj.o $(OBJ_COMPAT_CC)

SRC =	$(OBJ_CC:.o=.cc) $(OBJ_COMPAT_C:.o=.c)

all:	$(TCL2C) $(LIB_TCLCL)

$(TCL2C): tcl2c++.o
	$(RM) $@
	$(LINK) $(STATIC) $(LDFLAGS) $(LDOUT)$@ tcl2c++.o

# We used to link to libTcl.a for backwards compatibilty, but no more.
$(LIB_TCLCL): $(OBJ_CC) $(OBJ_COMPAT_C)
	$(RM) $@
	$(AR)$@ $(OBJ_CC) $(OBJ_COMPAT_C)
	$(RANLIB) $@

#
# pass-1 embedded tcl files
#
embedded-tcl.cc: $(TCL_LIBRARY_FILES) $(TCL2C)
	$(RM) $@
	$(TCL2C) et_tcl $(TCL_LIBRARY_FILES) > $@

embedded-tk.cc: $(TK_LIBRARY_FILES) $(TCL2C)
	$(RM) $@
	$(TCL2C) et_tk $(TK_LIBRARY_FILES) > $@

embedded-tclobj.cc: tcl-object.tcl tcl-import.tcl tcl-http.tcl $(TCL2C)
	$(RM) $@
	$(TCL2C) et_tclobject tcl-object.tcl tcl-import.tcl tcl-http.tcl > $@

#
# pass-1 console tcl files
#
embedded-console.cc: $(CONSOLE_FILES) $(TCL2C)
	$(RM) embedded-console.o
	$(TCL2C) et_console $(CONSOLE_FILES) > embedded-console.cc

install: force
	$(INSTALL) *.h @prefix@/include
	$(INSTALL) tcl2c++ @prefix@/bin
	$(INSTALL) $(LIB_TCLCL) @prefix@/lib

# libTcl is no longer installed as of 13-Nov-99
#	-test -f @prefix@/lib/libTcl.a && rm -f @prefix@/lib/libTcl.a || true
#	ln -s @prefix@/lib/libtclcl.a @prefix@/lib/libTcl.a

clean:
	$(RM) $(LIB_TCLCL) $(TCL2C) *.o config.log config.cache \
	embedded-tk.cc embedded-tclobj.cc embedded-tcl.cc

realclean:
	$(MAKE) clean
	rm -f Makefile config.log config.cache config.status

distclean: realclean

tags:	force
	ctags -tdwC $(SRC) *.h $(TKSRC)/*.c $(TKSRC)/*.h \
		$(TCLSRC)/*.c $(TCLSRC)/*.h

force:

depend:
	$(MKDEP) $(INCLUDES) $(DEFINE) $(SRC)

tar:	force
	tar=tclcl-`cat VERSION`-@V_TAR_TARGET@.tar.gz ; \
	rm -f $$tar ; \
	@V_TARCMD@ - README CHANGES.html @V_TAR_EXTRA@ $(ALL) | \
		gzip -c > $$tar

srctar: force
	@cwd=`pwd` ; dir=`basename $$cwd` ; \
	    name=tclcl-`cat VERSION | tr A-Z a-z` ; \
	    tar=tclcl-src-`cat VERSION`.tar.gz ; \
	    list="" ; \
	    for i in `cat FILES` ; do list="$$list $$name/$$i" ; done; \
	    echo \
	    "(rm -f $$tar; cd .. ; ln -s $$dir $$name)" ; \
	     (rm -f $$tar; cd .. ; ln -s $$dir $$name) ; \
	    echo \
	    "(cd .. ; tar cfh $$tar [lots of files])" ; \
	     (cd .. ; tar cfh - $$list) | gzip -c > $$tar ; \
	    echo \
	    "rm ../$$name; chmod 444 $$tar" ;  \
	     rm ../$$name; chmod 444 $$tar

# Create makefile.vc for Win32 development by replacing:
# "# !include ..." 	-> 	"!include ..."
makefile.vc:	Makefile.in
	$(PERL) -pe 's/^# (\!include)/\!include/o' < Makefile.in > makefile.vc

[-- Attachment #3: Type: text/plain, Size: 218 bytes --]

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable More
  2005-07-01  9:27 Qestion about Bash Fork Resource Temporily Unavailable More Question NS
@ 2005-07-01 15:51 ` Larry Hall
  2005-07-01 19:07   ` Question NS
  2005-07-01 20:47   ` Qestion about Bash Fork Resource Temporily Unavailable for NS2.28 and NS2.27 Question NS
  0 siblings, 2 replies; 25+ messages in thread
From: Larry Hall @ 2005-07-01 15:51 UTC (permalink / raw)
  To: Question NS, twall, cygwin

At 05:27 AM 7/1/2005, you wrote:
>checking which kind of 64-bit int to use... long long
>C:\CYGWIN\bin\sh.exe (62888): *** thread handle not
>set - 0x0<0x0>, Win32 error
>1450
>C:\CYGWIN\bin\sh.exe (62896): *** thread handle not
>set - 0x0<0x0>, Win32 error
>1450
>C:\CYGWIN\bin\sh.exe (62888): *** thread handle not
>set - 0x0<0x0>, Win32 error
>1450
>C:\CYGWIN\bin\sh.exe (62916): *** WFSO timed out after
>longjmp
>Signal 1
>./configure: Cannot fork: Resource temporarily
>unavailable
>./configure: Cannot fork: Resource temporarily
>unavailable
>./configure: Cannot fork: Resource temporarily
>unavailable
>./configure: Cannot fork: Resource temporarily
>unavailable
>tclcl-1.15 configuration failed! Exiting
>..../configure: Cannot fork: Resource t
>emporarily unavailable
>
>Your help is appreciated!

<snip>

Please read and follow the problem reporting guidelines at the link below:

>Problem reports:       http://cygwin.com/problems.html


Pay particular attention to the comment about *attaching* the cygcheck 
output.

At this point in time, without other info to go on, I'm going to suggest
you try the latest Cygwin package and, if that doesn't help, try the 
latest snapshot <http://cygwin.com/snapshots/>.

--
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
838 Washington Street                   (508) 893-9889 - FAX
Holliston, MA 01746                     


--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable More
  2005-07-01 15:51 ` Larry Hall
@ 2005-07-01 19:07   ` Question NS
  2005-07-01 20:47   ` Qestion about Bash Fork Resource Temporily Unavailable for NS2.28 and NS2.27 Question NS
  1 sibling, 0 replies; 25+ messages in thread
From: Question NS @ 2005-07-01 19:07 UTC (permalink / raw)
  To: Cygwin List, twall, ns-users

[-- Attachment #1: Type: text/plain, Size: 2123 bytes --]

Dear Larry,

Thank you for you suggestion, I installed Latest
Cygwin DLL release version is 1.5.17-1. Now I got
cygcheck.out and attach it for your review, I am
looking forward to your reply. By the way, I have
installed cygwin in April 2004, no problems. The
trouble came out when I reinstalled it several days
ago.

Regards,

--- Larry Hall
<lh-no-personal-replies-please@cygwin.com> wrote:

> At 05:27 AM 7/1/2005, you wrote:
> >checking which kind of 64-bit int to use... long
> long
> >C:\CYGWIN\bin\sh.exe (62888): *** thread handle not
> >set - 0x0<0x0>, Win32 error
> >1450
> >C:\CYGWIN\bin\sh.exe (62896): *** thread handle not
> >set - 0x0<0x0>, Win32 error
> >1450
> >C:\CYGWIN\bin\sh.exe (62888): *** thread handle not
> >set - 0x0<0x0>, Win32 error
> >1450
> >C:\CYGWIN\bin\sh.exe (62916): *** WFSO timed out
> after
> >longjmp
> >Signal 1
> >./configure: Cannot fork: Resource temporarily
> >unavailable
> >./configure: Cannot fork: Resource temporarily
> >unavailable
> >./configure: Cannot fork: Resource temporarily
> >unavailable
> >./configure: Cannot fork: Resource temporarily
> >unavailable
> >tclcl-1.15 configuration failed! Exiting
> >..../configure: Cannot fork: Resource t
> >emporarily unavailable
> >
> >Your help is appreciated!
> 
> <snip>
> 
> Please read and follow the problem reporting
> guidelines at the link below:
> 
> >Problem reports:      
> http://cygwin.com/problems.html
> 
> 
> Pay particular attention to the comment about
> *attaching* the cygcheck 
> output.
> 
> At this point in time, without other info to go on,
> I'm going to suggest
> you try the latest Cygwin package and, if that
> doesn't help, try the 
> latest snapshot <http://cygwin.com/snapshots/>.
> 
> --
> Larry Hall                             
> http://www.rfk.com
> RFK Partners, Inc.                      (508)
> 893-9779 - RFK Office
> 838 Washington Street                   (508)
> 893-9889 - FAX
> Holliston, MA 01746                     
> 
> 

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

[-- Attachment #2: 3924260979-cygcheck.out --]
[-- Type: application/octet-stream, Size: 23313 bytes --]


Cygwin Configuration Diagnostics
Current System Time: Fri Jul 01 13:57:13 2005

Windows XP Professional Ver 5.1 Build 2600 Service Pack 2

Path:	C:\CYGWIN\usr\local\bin
	C:\CYGWIN\bin
	C:\CYGWIN\bin
	C:\CYGWIN\usr\X11R6\bin
	c:\PROGRAM FILES\THINKPAD\UTILITIES
	c:\WINDOWS\system32
	c:\WINDOWS
	c:\WINDOWS\System32\Wbem
	c:\Program Files\ATI Technologies\ATI Control Panel
	c:\Program Files\PC-Doctor for Windows\services
	c:\matlab\bin\win32
	c:\Program Files\SSH Communications Security\SSH Secure Shell

Output from C:\CYGWIN\bin\id.exe (nontsec)
UID: 1006(PengFei)  GID: 513(None)
0(root)             513(None)           544(Administrators) 545(Users)

Output from C:\CYGWIN\bin\id.exe (ntsec)
UID: 1006(PengFei)  GID: 513(None)
0(root)             513(None)           544(Administrators) 545(Users)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

USER = `PengFei'
PWD = `/home/PengFei'
HOME = `/home/PengFei'
MAKE_MODE = `unix'

HOMEPATH = `\Documents and Settings\PengFei'
MANPATH = `/usr/local/man:/usr/man:/usr/share/man:/usr/autotool/devel/man::/usr/ssl/man'
APPDATA = `C:\Documents and Settings\PengFei\Application Data'
HOSTNAME = `IBM-F625B22F2D9'
TERM = `cygwin'
PROCESSOR_IDENTIFIER = `x86 Family 6 Model 9 Stepping 5, GenuineIntel'
WINDIR = `C:\WINDOWS'
OLDPWD = `/usr/bin'
USERDOMAIN = `IBM-F625B22F2D9'
OS = `Windows_NT'
ALLUSERSPROFILE = `C:\Documents and Settings\All Users'
TEMP = `/cygdrive/c/DOCUME~1/PengFei/LOCALS~1/Temp'
COMMONPROGRAMFILES = `C:\Program Files\Common Files'
USERNAME = `PengFei'
PROCESSOR_LEVEL = `6'
FP_NO_HOST_CHECK = `NO'
SYSTEMDRIVE = `C:'
USERPROFILE = `C:\Documents and Settings\PengFei'
PS1 = `\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ '
LOGONSERVER = `\\IBM-F625B22F2D9'
PROCESSOR_ARCHITECTURE = `x86'
!C: = `C:\Cygwin\bin'
SHLVL = `1'
PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
HOMEDRIVE = `C:'
PROMPT = `$P$G'
COMSPEC = `C:\WINDOWS\system32\cmd.exe'
TMP = `/cygdrive/c/DOCUME~1/PengFei/LOCALS~1/Temp'
SYSTEMROOT = `C:\WINDOWS'
PRINTER = `Acrobat Distiller'
CVS_RSH = `/bin/ssh'
PROCESSOR_REVISION = `0905'
PKG_CONFIG_PATH = `/usr/X11R6/lib/pkgconfig'
INFOPATH = `/usr/local/info:/usr/info:/usr/share/info:/usr/autotool/devel/info:/usr/autotool/stable/info:'
PROGRAMFILES = `C:\Program Files'
NUMBER_OF_PROCESSORS = `1'
SESSIONNAME = `Console'
COMPUTERNAME = `IBM-F625B22F2D9'
_ = `/usr/bin/cygcheck'
POSIXLY_CORRECT = `1'

HKEY_CURRENT_USER\Software\Cygnus Solutions
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2
HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2
  (default) = `/cygdrive'
  cygdrive flags = 0x00000022
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/
  (default) = `C:\CYGWIN'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin
  (default) = `C:\CYGWIN/bin'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib
  (default) = `C:\CYGWIN/lib'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/X11R6/lib/X11/fonts
  (default) = `C:\cygwin\usr\X11R6\lib\X11\fonts'
  flags = 0x0000000a
HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\Program Options

c:  hd  NTFS     35083Mb  62% CP CS UN PA FC     IBM_PRELOAD
d:  cd             N/A    N/A                    

C:\CYGWIN                          /                         system  binmode
C:\CYGWIN/bin                      /usr/bin                  system  binmode
C:\CYGWIN/lib                      /usr/lib                  system  binmode
C:\cygwin\usr\X11R6\lib\X11\fonts  /usr/X11R6/lib/X11/fonts  system  binmode
.                                  /cygdrive                 system  binmode,cygdrive

Found: C:\CYGWIN\bin\awk.exe
Found: C:\CYGWIN\bin\bash.exe
Found: C:\CYGWIN\bin\cat.exe
Found: C:\CYGWIN\bin\cp.exe
Found: C:\CYGWIN\bin\cpp.exe
Found: C:\CYGWIN\bin\find.exe
Found: C:\CYGWIN\bin\gcc.exe
Found: C:\CYGWIN\bin\gdb.exe
Found: C:\CYGWIN\bin\grep.exe
Found: C:\CYGWIN\bin\ld.exe
Found: C:\CYGWIN\bin\ls.exe
Found: C:\CYGWIN\bin\make.exe
Found: C:\CYGWIN\bin\mv.exe
Found: C:\CYGWIN\bin\rm.exe
Found: C:\CYGWIN\bin\sed.exe
Found: C:\CYGWIN\bin\sh.exe
Found: C:\CYGWIN\bin\tar.exe

   55k 2004/09/14 C:\CYGWIN\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2004/9/13 23:16
   18k 2004/07/06 C:\CYGWIN\bin\cygcharset-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygcharset-1.dll" v0.0 ts=2004/7/6 13:09
    7k 2003/10/19 C:\CYGWIN\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypt-0.dll" v0.0 ts=2003/10/19 2:57
  858k 2005/04/11 C:\CYGWIN\bin\cygcrypto-0.9.7.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypto-0.9.7.dll" v0.0 ts=2005/4/11 13:21
  895k 2004/04/28 C:\CYGWIN\bin\cygdb-4.2.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.2.dll" v0.0 ts=2004/4/27 10:31
 1156k 2004/04/28 C:\CYGWIN\bin\cygdb_cxx-4.2.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.2.dll" v0.0 ts=2004/4/27 10:35
  174k 2004/10/14 C:\CYGWIN\bin\cygexpat-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygexpat-0.dll" v0.0 ts=2004/10/14 3:34
  129k 2004/03/11 C:\CYGWIN\bin\cygfontconfig-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontconfig-1.dll" v0.0 ts=2004/3/10 18:12
   40k 2004/10/10 C:\CYGWIN\bin\cygform-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-8.dll" v0.0 ts=2004/10/10 3:33
   45k 2001/04/25 C:\CYGWIN\bin\cygform5.dll - os=4.0 img=1.0 sys=4.0
                  "cygform5.dll" v0.0 ts=2001/4/25 0:28
   35k 2002/01/09 C:\CYGWIN\bin\cygform6.dll - os=4.0 img=1.0 sys=4.0
                  "cygform6.dll" v0.0 ts=2002/1/9 0:03
   48k 2003/08/09 C:\CYGWIN\bin\cygform7.dll - os=4.0 img=1.0 sys=4.0
                  "cygform7.dll" v0.0 ts=2003/8/9 4:25
  361k 2003/10/25 C:\CYGWIN\bin\cygfreetype-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygfreetype-6.dll" v0.0 ts=2003/10/21 23:18
   28k 2003/07/20 C:\CYGWIN\bin\cyggdbm-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-3.dll" v0.0 ts=2003/7/20 2:58
   30k 2003/08/11 C:\CYGWIN\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2003/8/10 21:12
   19k 2003/03/22 C:\CYGWIN\bin\cyggdbm.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm.dll" v0.0 ts=2002/2/19 21:05
   15k 2003/07/20 C:\CYGWIN\bin\cyggdbm_compat-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-3.dll" v0.0 ts=2003/7/20 3:00
   15k 2003/08/11 C:\CYGWIN\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-4.dll" v0.0 ts=2003/8/10 21:13
   17k 2001/06/28 C:\CYGWIN\bin\cyghistory4.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory4.dll" v0.0 ts=2001/1/6 22:34
   29k 2003/08/10 C:\CYGWIN\bin\cyghistory5.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory5.dll" v0.0 ts=2003/8/10 18:16
   24k 2005/06/26 C:\CYGWIN\bin\cyghistory6.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory6.dll" v0.0 ts=2005/6/25 23:41
  991k 2004/07/06 C:\CYGWIN\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2004/7/6 13:10
   22k 2001/12/13 C:\CYGWIN\bin\cygintl-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-1.dll" v0.0 ts=2001/12/13 3:28
   37k 2003/08/10 C:\CYGWIN\bin\cygintl-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-2.dll" v0.0 ts=2003/8/10 16:50
   54k 2004/07/06 C:\CYGWIN\bin\cygintl-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-3.dll" v0.0 ts=2004/7/6 12:51
   21k 2001/06/20 C:\CYGWIN\bin\cygintl.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl.dll" v0.0 ts=2001/6/20 12:09
  132k 2003/08/11 C:\CYGWIN\bin\cygjpeg-62.dll - os=4.0 img=1.0 sys=4.0
                  "cygjpeg-62.dll" v0.0 ts=2003/8/10 19:37
   42k 2005/05/04 C:\CYGWIN\bin\cyglber-2-2-7.dll - os=4.0 img=1.0 sys=4.0
                  "cyglber-2-2-7.dll" v0.0 ts=2005/5/4 5:54
  179k 2005/05/04 C:\CYGWIN\bin\cygldap-2-2-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap-2-2-7.dll" v0.0 ts=2005/5/4 6:03
  191k 2005/05/04 C:\CYGWIN\bin\cygldap_r-2-2-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygldap_r-2-2-7.dll" v0.0 ts=2005/5/4 6:03
   22k 2004/10/10 C:\CYGWIN\bin\cygmenu-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-8.dll" v0.0 ts=2004/10/10 3:33
   26k 2001/04/25 C:\CYGWIN\bin\cygmenu5.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu5.dll" v0.0 ts=2001/4/25 0:27
   20k 2002/01/09 C:\CYGWIN\bin\cygmenu6.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu6.dll" v0.0 ts=2002/1/9 0:03
   29k 2003/08/09 C:\CYGWIN\bin\cygmenu7.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu7.dll" v0.0 ts=2003/8/9 4:25
   21k 2004/10/22 C:\CYGWIN\bin\cygminires.dll - os=4.0 img=1.0 sys=4.0
                  "cygminires.dll" v0.0 ts=2004/10/22 15:28
   74k 2004/10/10 C:\CYGWIN\bin\cygncurses++-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-8.dll" v0.0 ts=2004/10/10 3:33
  156k 2001/04/25 C:\CYGWIN\bin\cygncurses++5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++5.dll" v0.0 ts=2001/4/25 0:29
  175k 2002/01/09 C:\CYGWIN\bin\cygncurses++6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++6.dll" v0.0 ts=2002/1/9 0:03
  216k 2004/10/10 C:\CYGWIN\bin\cygncurses-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-8.dll" v0.0 ts=2004/10/10 3:25
  226k 2001/04/25 C:\CYGWIN\bin\cygncurses5.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses5.dll" v0.0 ts=2001/4/25 0:17
  202k 2002/01/09 C:\CYGWIN\bin\cygncurses6.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses6.dll" v0.0 ts=2002/1/9 0:03
  224k 2003/08/09 C:\CYGWIN\bin\cygncurses7.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses7.dll" v0.0 ts=2003/8/9 4:24
   13k 2004/10/10 C:\CYGWIN\bin\cygpanel-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-8.dll" v0.0 ts=2004/10/10 3:32
   15k 2001/04/25 C:\CYGWIN\bin\cygpanel5.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel5.dll" v0.0 ts=2001/4/25 0:27
   12k 2002/01/09 C:\CYGWIN\bin\cygpanel6.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel6.dll" v0.0 ts=2002/1/9 0:03
   19k 2003/08/09 C:\CYGWIN\bin\cygpanel7.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel7.dll" v0.0 ts=2003/8/9 4:24
   62k 2003/12/11 C:\CYGWIN\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2003/12/11 11:01
   63k 2003/04/11 C:\CYGWIN\bin\cygpcre.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre.dll" v0.0 ts=2003/4/11 3:31
    9k 2003/12/11 C:\CYGWIN\bin\cygpcreposix-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix-0.dll" v0.0 ts=2003/12/11 11:01
   61k 2003/04/11 C:\CYGWIN\bin\cygpcreposix.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcreposix.dll" v0.0 ts=2003/4/11 3:31
 1252k 2005/01/27 C:\CYGWIN\bin\cygperl5_8.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_8.dll" v0.0 ts=2005/1/27 4:17
  173k 2003/08/10 C:\CYGWIN\bin\cygpng12.dll - os=4.0 img=1.0 sys=4.0
                  "cygpng12.dll" v0.0 ts=2003/8/10 17:35
   22k 2002/06/09 C:\CYGWIN\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpopt-0.dll" v0.0 ts=2002/6/9 0:45
  108k 2001/06/28 C:\CYGWIN\bin\cygreadline4.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline4.dll" v0.0 ts=2001/1/6 22:34
  148k 2003/08/10 C:\CYGWIN\bin\cygreadline5.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline5.dll" v0.0 ts=2003/8/10 18:16
  144k 2005/06/26 C:\CYGWIN\bin\cygreadline6.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline6.dll" v0.0 ts=2005/6/25 23:41
   78k 2004/10/13 C:\CYGWIN\bin\cygsasl2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygsasl2-2.dll" v0.0 ts=2004/10/13 17:50
  171k 2005/04/11 C:\CYGWIN\bin\cygssl-0.9.7.dll - os=4.0 img=1.0 sys=4.0
                  "cygssl-0.9.7.dll" v0.0 ts=2005/4/11 13:21
  299k 2004/10/10 C:\CYGWIN\bin\cygtiff-5.dll - os=4.0 img=1.0 sys=4.0
                  "cygtiff-5.dll" v0.0 ts=2004/10/10 16:55
   62k 2004/10/10 C:\CYGWIN\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2004/10/9 23:09
 1227k 2005/05/25 C:\CYGWIN\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2005/5/25 18:38
    Cygwin DLL version info:
        DLL version: 1.5.17
        DLL epoch: 19
        DLL bad signal mask: 19005
        DLL old termios: 5
        DLL malloc env: 28
        API major: 0
        API minor: 129
        Shared data: 4
        DLL identifier: cygwin1
        Mount registry: 2
        Cygnus registry name: Cygnus Solutions
        Cygwin registry name: Cygwin
        Program options name: Program Options
        Cygwin mount registry name: mounts v2
        Cygdrive flags: cygdrive flags
        Cygdrive prefix: cygdrive prefix
        Cygdrive default prefix: 
        Build date: Wed May 25 19:38:55 EDT 2005
        Shared id: cygwin1S4

  243k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygdps-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdps-1.dll" v0.0 ts=2005/2/23 8:42
   26k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygdpstk-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygdpstk-1.dll" v0.0 ts=2005/2/23 8:42
   28k 2004/03/31 C:\CYGWIN\usr\X11R6\bin\cygDtPrint-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygDtPrint-1.dll" v0.0 ts=2004/3/30 22:23
   21k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygfontenc-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygfontenc-1.dll" v0.0 ts=2005/2/23 8:45
   36k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygFS-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygFS-6.dll" v0.0 ts=2005/2/23 8:34
  358k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygGL-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGL-1.dll" v0.0 ts=2005/2/23 8:39
  438k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygGLU-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygGLU-1.dll" v0.0 ts=2005/2/23 8:41
   75k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygICE-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygICE-6.dll" v0.0 ts=2005/2/23 8:28
   77k 2004/03/31 C:\CYGWIN\usr\X11R6\bin\cygMrm-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygMrm-2.dll" v0.0 ts=2004/3/30 22:23
    9k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygoldX-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygoldX-6.dll" v0.0 ts=2005/2/23 8:28
 1413k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygOSMesa-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygOSMesa-4.dll" v0.0 ts=2005/2/23 8:39
   20k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygpsres-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygpsres-1.dll" v0.0 ts=2005/2/23 8:42
   30k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygSM-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygSM-6.dll" v0.0 ts=2005/2/23 8:28
   66k 2004/03/31 C:\CYGWIN\usr\X11R6\bin\cygUil-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygUil-2.dll" v0.0 ts=2004/3/30 22:23
  877k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygX11-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygX11-6.dll" v0.0 ts=2005/2/23 8:28
  254k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXaw-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-6.dll" v0.0 ts=2005/2/23 8:31
  356k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXaw-7.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-7.dll" v0.0 ts=2005/2/23 8:32
  363k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXaw-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygXaw-8.dll" v0.0 ts=2005/2/23 8:33
    9k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXcomposite-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcomposite-1.dll" v0.0 ts=2005/2/23 8:44
   30k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXcursor-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXcursor-1.dll" v0.0 ts=2005/2/23 8:43
    9k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXdamage-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXdamage-1.dll" v0.0 ts=2005/2/23 8:44
    7k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXevie-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXevie-1.dll" v0.0 ts=2005/2/23 8:43
   49k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXext-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXext-6.dll" v0.0 ts=2005/2/23 8:28
   16k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXfixes-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygXfixes-3.dll" v0.0 ts=2005/2/23 8:43
   56k 2004/03/11 C:\CYGWIN\usr\X11R6\bin\cygXft-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-1.dll" v0.0 ts=2003/11/17 19:42
   63k 2004/03/23 C:\CYGWIN\usr\X11R6\bin\cygXft-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXft-2.dll" v0.0 ts=2004/3/23 16:20
   27k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXi-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXi-6.dll" v0.0 ts=2005/2/23 8:34
  125k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygxkbfile-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbfile-1.dll" v0.0 ts=2005/2/23 8:34
   12k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygxkbui-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygxkbui-1.dll" v0.0 ts=2005/2/23 8:34
 1294k 2004/03/31 C:\CYGWIN\usr\X11R6\bin\cygXm-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXm-2.dll" v0.0 ts=2004/3/30 22:20
   76k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXmu-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmu-6.dll" v0.0 ts=2005/2/23 8:30
   11k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXmuu-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXmuu-1.dll" v0.0 ts=2005/2/23 8:30
   26k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXp-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXp-6.dll" v0.0 ts=2005/2/23 8:31
   52k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXpm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cygXpm-4.dll" v0.0 ts=2005/2/23 8:30
   12k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXrandr-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrandr-2.dll" v0.0 ts=2005/2/23 8:43
   28k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXrender-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXrender-1.dll" v0.0 ts=2005/2/23 8:42
    8k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXRes-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygXRes-1.dll" v0.0 ts=2005/2/23 8:43
   40k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygxrx-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygxrx-6.dll" v0.0 ts=2005/2/23 8:53
   25k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygxrxnest-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygxrxnest-6.dll" v0.0 ts=2005/2/23 8:53
  282k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXt-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXt-6.dll" v0.0 ts=2005/2/23 8:29
   27k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXTrap-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXTrap-6.dll" v0.0 ts=2005/2/23 8:43
   17k 2005/02/23 C:\CYGWIN\usr\X11R6\bin\cygXtst-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygXtst-6.dll" v0.0 ts=2005/2/23 8:34

No Cygwin services found.


Cygwin Package Information
Last downloaded files to: C:\Cygwin\ftp%3a%2f%2fftp.cise.ufl.edu%2fpub%2fmirrors%2fcygwin
Last downloaded files from: ftp://ftp.cise.ufl.edu/pub/mirrors/cygwin

Package              Version
_update-info-dir     00269-1
alternatives         1.3.20a-1
ash                  20040127-1
autoconf             2.59-2
autoconf2.1          2.13-1
autoconf2.5          2.59-1
automake             1.7.9-2
automake-devel       1.9.2-2
automake-stable      1.4p6-3
automake1.4          1.4p6-1
automake1.9          1.9.5-1
base-files           3.4-2
base-passwd          2.2-1
bash                 2.05b-17
binutils             20050608-2
bzip2                1.0.2-6
coreutils            5.3.0-6
crypt                1.1-1
cygrunsrv            1.10-1
cygutils             1.2.8-1
cygwin               1.5.17-1
cygwin-doc           1.4-2
diffutils            2.8.7-1
editrights           1.01-1
expat                1.95.8-1
findutils            20041227-1
fontconfig           2.2.2-1
freetype2            2.1.5-1
gawk                 3.1.4-3
gcc-core             3.4.4-1
gcc-g++              3.4.4-1
gcc-mingw-core       20050522-1
gcc-mingw-g++        20050522-1
gcc-mingw-objc       20050522-1
gcc-objc             3.4.4-1
gdb                  20041228-3
gdbm                 1.8.3-7
gettext              0.14.1-1
grep                 2.5.1a-2
groff                1.18.1-2
gzip                 1.3.5-1
less                 381-1
lesstif              0.93.94-2
libbz2_1             1.0.2-6
libcharset1          1.9.2-1
libdb4.2             4.2.52-1
libfontconfig-devel  2.2.2-1
libfontconfig1       2.2.2-1
libfreetype2-devel   2.1.5-1
libfreetype26        2.1.5-1
libgdbm              1.8.0-5
libgdbm-devel        1.8.3-7
libgdbm3             1.8.3-3
libgdbm4             1.8.3-7
libiconv             1.9.2-1
libiconv2            1.9.2-1
libintl              0.10.38-3
libintl1             0.10.40-1
libintl2             0.12.1-3
libintl3             0.14.1-1
libjpeg62            6b-11
libncurses5          5.2-1
libncurses6          5.2-8
libncurses7          5.3-4
libncurses8          5.4-1
libopenldap2_2_7     2.2.26-1
libpcre              4.1-1
libpcre0             4.5-1
libpng12             1.2.5-4
libpopt0             1.6.4-4
libreadline4         4.1-2
libreadline5         4.3-5
libreadline6         5.0-2
libsasl2             2.1.19-3
libtiff5             3.7.0beta2-1
libXft               2.1.6-1
libXft-devel         2.1.6-1
libXft1              1.0.0-1
libXft2              2.1.6-1
login                1.9-7
m4                   1.4.3-1
make                 3.80-1
man                  1.5p-1
mingw-runtime        3.7-1
minires              1.00-1
mktemp               1.5-3
ncurses              5.4-1
openssl              0.9.7g-1
patch                2.5.8-8
patchutils           0.2.30-1
pcre                 4.5-1
pcre-doc             4.5-1
perl                 5.8.6-4
perl-libwin32        0.191-4
perl-Win32-GUI       1.0-2
postgresql           7.4.5-1
readline             5.0-2
sed                  4.1.4-1
tar                  1.13.25-7
tcltk                20030901-1
termcap              20050421-1
terminfo             5.4_20041009-1
texinfo              4.8-1
w32api               3.2-1
which                1.7-1
X-startup-scripts    1.0.10-4
xemacs               21.4.17-1
XFree86-base         4.3.0-11
XFree86-bin          4.3.0-21
XFree86-etc          4.3.0-12
XFree86-lib          4.3.0-3
XFree86-prog         4.3.0-21
xorg-x11-base        6.8.2.0-1
xorg-x11-bin         6.8.2.0-1
xorg-x11-bin-dlls    6.8.2.0-1
xorg-x11-bin-lndir   6.8.2.0-1
xorg-x11-devel       6.8.2.0-2
xorg-x11-etc         6.8.2.0-1
xorg-x11-fenc        6.8.1.0-2
xorg-x11-fnts        6.8.1.0-3
xorg-x11-libs-data   6.8.2.0-1
xorg-x11-xwin        6.8.2.0-2
xterm                202-1
zlib                 1.2.2-1
Use -h to see help about each section

[-- Attachment #3: Type: text/plain, Size: 218 bytes --]

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Qestion about Bash Fork Resource Temporily Unavailable for NS2.28 and NS2.27
  2005-07-01 15:51 ` Larry Hall
  2005-07-01 19:07   ` Question NS
@ 2005-07-01 20:47   ` Question NS
  2005-07-01 20:58     ` Brian Dessent
  2005-07-03  3:56     ` Larry Hall
  1 sibling, 2 replies; 25+ messages in thread
From: Question NS @ 2005-07-01 20:47 UTC (permalink / raw)
  To: Cygwin List, twall, ns-users

Hi, all,

While I restart cygwin after I failed to install
NS2.27 or NS2.28, it shows,
bash: /usr/bin/id: Resource temporarily unavailable
      6 [main] bash 62528 fork_parent: child 62624
died waiting for longjmp befo
re initialization
bash: fork: Bad file descriptor

Then I restarted it, it shows 
bash: fork: Resource temporarily unavailable

Your help is appreciated!

--- Larry Hall
<lh-no-personal-replies-please@cygwin.com> wrote:

> At 05:27 AM 7/1/2005, you wrote:
> >checking which kind of 64-bit int to use... long
> long
> >C:\CYGWIN\bin\sh.exe (62888): *** thread handle not
> >set - 0x0<0x0>, Win32 error
> >1450
> >C:\CYGWIN\bin\sh.exe (62896): *** thread handle not
> >set - 0x0<0x0>, Win32 error
> >1450
> >C:\CYGWIN\bin\sh.exe (62888): *** thread handle not
> >set - 0x0<0x0>, Win32 error
> >1450
> >C:\CYGWIN\bin\sh.exe (62916): *** WFSO timed out
> after
> >longjmp
> >Signal 1
> >./configure: Cannot fork: Resource temporarily
> >unavailable
> >./configure: Cannot fork: Resource temporarily
> >unavailable
> >./configure: Cannot fork: Resource temporarily
> >unavailable
> >./configure: Cannot fork: Resource temporarily
> >unavailable
> >tclcl-1.15 configuration failed! Exiting
> >..../configure: Cannot fork: Resource t
> >emporarily unavailable
> >
> >Your help is appreciated!
> 
> <snip>
> 
> Please read and follow the problem reporting
> guidelines at the link below:
> 
> >Problem reports:      
> http://cygwin.com/problems.html
> 
> 
> Pay particular attention to the comment about
> *attaching* the cygcheck 
> output.
> 
> At this point in time, without other info to go on,
> I'm going to suggest
> you try the latest Cygwin package and, if that
> doesn't help, try the 
> latest snapshot <http://cygwin.com/snapshots/>.
> 
> --
> Larry Hall                             
> http://www.rfk.com
> RFK Partners, Inc.                      (508)
> 893-9779 - RFK Office
> 838 Washington Street                   (508)
> 893-9889 - FAX
> Holliston, MA 01746                     
> 
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for NS2.28   and NS2.27
  2005-07-01 20:47   ` Qestion about Bash Fork Resource Temporily Unavailable for NS2.28 and NS2.27 Question NS
@ 2005-07-01 20:58     ` Brian Dessent
  2005-07-03  3:56     ` Larry Hall
  1 sibling, 0 replies; 25+ messages in thread
From: Brian Dessent @ 2005-07-01 20:58 UTC (permalink / raw)
  To: Cygwin List

Question NS wrote:

> Your help is appreciated!

If you want help so badly, why did you just ignore everything that Larry
said in his reply?  He specifically told you two things: post cygcheck
output, and try a snapshot.  I suggested in a previous reply that you
try bash-2.05b-17.  Have you done any of these three things?  Do not
continue to post the same error messages over and over without actually
reading what the people that are trying to help you are saying.

Brian

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for   NS2.28 and NS2.27
  2005-07-01 20:47   ` Qestion about Bash Fork Resource Temporily Unavailable for NS2.28 and NS2.27 Question NS
  2005-07-01 20:58     ` Brian Dessent
@ 2005-07-03  3:56     ` Larry Hall
  2005-07-03  3:59       ` daemon
  2005-07-03  7:12       ` Question NS
  1 sibling, 2 replies; 25+ messages in thread
From: Larry Hall @ 2005-07-03  3:56 UTC (permalink / raw)
  To: Question NS, Cygwin List, twall, ns-users

At 04:46 PM 7/1/2005, you wrote:
>Hi, all,
>
>While I restart cygwin after I failed to install
>NS2.27 or NS2.28, it shows,
>bash: /usr/bin/id: Resource temporarily unavailable
>      6 [main] bash 62528 fork_parent: child 62624
>died waiting for longjmp befo
>re initialization
>bash: fork: Bad file descriptor
>
>Then I restarted it, it shows 
>bash: fork: Resource temporarily unavailable
>
>Your help is appreciated!


Well, I've reviewed your cygcheck output and didn't find anything there
which was obviously wrong.  I'm assuming that the version of 'bash' you 
have installed now is the same version as the one you see this problem
with (i.e. bash 2.05b-17 and not the test version 3.0-2).  If that is 
the case, then you've answered Brian's (very good) question.  You might
want to take a look at Eric Blake's message on a somewhat related thread:

<http://cygwin.com/ml/cygwin/2005-07/msg00054.html>

The last paragraph may be applicable to your situation.




--
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
838 Washington Street                   (508) 893-9889 - FAX
Holliston, MA 01746                     


--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for   NS2.28 and NS2.27
  2005-07-03  3:56     ` Larry Hall
@ 2005-07-03  3:59       ` daemon
  2005-07-03  7:12       ` Question NS
  1 sibling, 0 replies; 25+ messages in thread
From: daemon @ 2005-07-03  3:59 UTC (permalink / raw)
  To: cygwin


Welcome to posting to the ns-users mailing list!

We automatically send this message to every new person who sends mail
to the list.  You should only receive it once.  My apologies if the
program contacts you twice, perhaps because you have multiple e-mail
addresses or send mail from multiple machines.

If you are an experienced ns-user who simply has not posted since we
started using this responder, our apologies for inconveniencing you
with this message.  This message is intended to help inform users and
cut down on redundant posts, which benefits everyone.

Please look at the attached list of ns Frequently Asked Questions.
If it answers your question, great!  You're done.
If not, please RE-SEND your original message to ns-users@isi.edu.
A copy of your original message is included below for reference.

You will NOT have to do re-send your message every time you post, only
the FIRST time you send from a new account.  The goal is to quickly
help new users find the FAQ (hopefully answering their question).

Thanks,
   -the ns development team


----------------------------------------


            The Network Simulator ns-2: Frequently Asked Questions

   (This FAQ is also on the web at
   http://www.isi.edu/nsnam/ns/ns-faq.html.)
       
     * _Where do I get ns?_
       
       From the ns web site at http://www.isi.edu/nsnam/ns/ns.html and
       the download page http://www.isi.edu/nsnam/ns/ns-tests.html.
       
     * _What platforms does ns run on and what kind of hardware do I
       need?_
       
       Please see "where to start" on the building ns web page:
       http://www.isi.edu/nsnam/ns/ns-build.html#start.
       
     * _What should I do if I have trouble downloading/extracting ns?_
       
       This question is answered in detail at
       http://www.isi.edu/nsnam/ns/ns-problems.html#downloading.
       
     * _What should I do if I encounter problems building ns?_
       
       Check:
         1. the README that comes in the distribution (very brief),
         2. the "installation problems, bug fixes and help" web page
            http://www.isi.edu/nsnam/ns/ns-problems.html,
         3. the archives of the ns-users mailing list
            http://www.isi.edu/nsnam/ns/ns-lists.html,
         4. post a bug report (see below)
            http://www.isi.edu/cgi-bin/nsnam/reportbug.cgi.
       
     * _What do I do after I successfully build ns?_
       
          + Put the path to your ns executable into your PATH environment
          + Put the path to your otcl into your LD_LIBRARY_PATH
            environment
          + Put the path to your tcl library into your TCL_LIBRARY
            environment
       
     * _Where can I find documentation for ns?_
       
       All documentation is linked from the main ns web page
       http://www.isi.edu/nsnam/ns/. Documentation includes a tutorial
       (originally from Marc Greis) and a reference manual (ns notes and
       documentation).
       
     * _Words, words, words... that documentation is nice, but where are
       some sample scripts I can start from?_
       
       Many sample scripts can be found in the ns distribution in
       ~ns-2/tcl/ex and ~ns-2/tcl/test.
       
     * _What protocols does ns support?_
       
       A lot! Almost all variants of TCP, several forms of multicast,
       wired networking, several ad hoc routing protocols and propagation
       models (but not cellular phones), data diffusion, satellite, and
       other stuff. See the documentation (described above) for details,
       or download ns and look.
       
     * _How do I know that ns correctly implements these protocols?_
       
       Ns has validation tests that cover many protocols, see
       http://www.isi.edu/nsnam/ns/ns-tests.html. However, ultimately
       users are responsible for verifying that ns is accurate for their
       purposes---since we cannot foresee all the ways ns may be used, we
       cannot test all cases with all inputs.
       
     * _Are there any contributed/additional protocols not in the main
       distribution?_
       
       Yes, please see the contributed code web page
       http://www.isi.edu/nsnam/ns/ns-contributed.html. The mailing list
       archives can also be helpful (see below).
       
     * _How should I get started doing something (like implementing a new
       protocol or trying an experiment)?_
       
       We recommend that you look through the tutorial (see
       documentation, above), then start with an example program that is
       most similar to yours (in the tutorial, or in tcl/ex or tcl/test
       in the distribution), and then start changing things.
       
     * _What should I do to compile ns to reflect my changes if I've
       modified some .cc or .h files?_
       
       go to ns directory and run "make" or "make depend; make"
       
     * _How do I subscribe to the ns-users mailing list? How do I search
       old list archives? I can't take any more---how do I get off this
       list?_
       
       To subscribe or unsubscribe, see
       http://www.isi.edu/nsnam/ns/ns-lists.html. The list archive is at
       http://www.isi.edu/nsnam/ns/ns-lists.html.
       
     * _What if I have a question that's not answered here?_
       
       If you've checked the installation problems and bug fixes web page
       (http://www.isi.edu/nsnam/ns/ns-problems.html) and there's no
       answer to your question, you may want to file a bug report or post
       a question to the ns-user's mailing list.
       
       First, you should check the archive of the list at
       http://www.isi.edu/nsnam/ns/ns-lists.html. Your question may
       already be answered there.
       
       If not, you can post a bug report using the web form at
       http://www.isi.edu/cgi-bin/nsnam/reportbug.cgi.
       
       If your question is NOT about ns implementation bugs, you may wish
       to post to the list. First you should subscribe. Subscription
       instructions are at http://www.isi.edu/nsnam/ns/ns-lists.html.
       
       _Please note that mail sent to the list is publicly distributed
       and archived. _If you have concerns about your message being made
       public (spam harvesting of your address), please consider that
       _before_ posting. We cannot remove messages from reciepient's
       mailboxes or the public archive after they're posted.
       
       When posting bug reports, please _always_ include information
       including at least (the bug report form includes spaces for
       these):
          + what version of ns you're using,
          + what operating system you're running on (not just Linux or
            Solaris, but RedHat version 7.0 or Solaris 2.4---send us the
            output of "uname -a"),
          + what specific behavior you see (if ns doesn't compile, what's
            the specific error; if TCP does something strange, what
            exactly did it do [send a pointer to a packet trace]),
          + what behavior you expected to see (if ns doesn't compile this
            is obvious, but if TCP does something strange, why is it
            strange, where is the TCP spec violated?),
          + pointers to your script detailed output files,
          + a statement that "yes, I've read the FAQ, ns-problems page,
            and manual and I couldn't find the answer there" (or a
            statement about why you didn't do that yet :-)
       
       A reminder about mailing list etiquette:
          + Please check the web pages and list archives before posting
            your question.
          + Please keep the body of your post to simple ASCII, not HTML.
          + Please do _not_ send large attachments (if what you have is
            bigger than a few kilobytes, put it on a web page and send a
            URL)
          + Before posting a question like "did people see my post" or
            "the list seems down", please check the archives (you can
            answer this question more accurately by checking yourself
            rather than asking).
          + Please don't post subscribe/unsubscribe requests directly to
            the list, use the lists' information page. (see the web page
            mentioned above for details).
     _________________________________________________________________


----------------------------------------

From lh-no-personal-replies-please@cygwin.com Sat Jul  2 20:57:48 2005
Received: from vapor.isi.edu (vapor.isi.edu [128.9.64.64])
	by gamma.isi.edu (8.11.6p2+0917/8.11.2) with ESMTP id j633vAr14139
	for <ns-users-faq@mailman.isi.edu>; Sat, 2 Jul 2005 20:57:10 -0700 (PDT)
Received: from mail.prospeed.net (mail.prospeed.net [12.46.111.140])
	by vapor.isi.edu (8.11.6p2+0917/8.11.2) with ESMTP id j633uoA17514
	for <ns-users@isi.edu>; Sat, 2 Jul 2005 20:56:51 -0700 (PDT)
Received: from enterprise-e.cygwin.com (lhall.prospeed.net [12.46.110.44] (may be forged))
	by mail.prospeed.net (8.13.0/8.13.0) with ESMTP id j633uLO9004900;
	Sat, 2 Jul 2005 23:56:32 -0400
Reply-To: Cygwin List <cygwin@cygwin.com>
Message-Id: <6.2.1.2.0.20050702234055.03c5a930@pop.prospeed.net>
X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2
Date: Sat, 02 Jul 2005 23:56:07 -0400
To: Question NS <ns_questions@yahoo.ca>, Cygwin List <cygwin@cygwin.com>,
   twall@oculustech.com, ns-users@ISI.EDU
From: Larry Hall <lh-no-personal-replies-please@cygwin.com>
Subject: Re: Qestion about Bash Fork Resource Temporily Unavailable for
  NS2.28 and NS2.27
In-Reply-To: <20050701204659.17344.qmail@web30106.mail.mud.yahoo.com>
References: <6.2.1.2.0.20050701114811.03d3eb08@pop.prospeed.net>
 <20050701204659.17344.qmail@web30106.mail.mud.yahoo.com>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
X-ISI-4-39-6-MailScanner: Found to be clean
X-ISI-4-38-10-MailScanner: Found to be clean
X-MailScanner-From: lh-no-personal-replies-please@cygwin.com

At 04:46 PM 7/1/2005, you wrote:
>Hi, all,
>
>While I restart cygwin after I failed to install
>NS2.27 or NS2.28, it shows,
>bash: /usr/bin/id: Resource temporarily unavailable
>      6 [main] bash 62528 fork_parent: child 62624
>died waiting for longjmp befo
>re initialization
>bash: fork: Bad file descriptor
>
>Then I restarted it, it shows 
>bash: fork: Resource temporarily unavailable
>
>Your help is appreciated!


Well, I've reviewed your cygcheck output and didn't find anything there
which was obviously wrong.  I'm assuming that the version of 'bash' you 
have installed now is the same version as the one you see this problem
with (i.e. bash 2.05b-17 and not the test version 3.0-2).  If that is 
the case, then you've answered Brian's (very good) question.  You might
want to take a look at Eric Blake's message on a somewhat related thread:

<http://cygwin.com/ml/cygwin/2005-07/msg00054.html>

The last paragraph may be applicable to your situation.




--
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
838 Washington Street                   (508) 893-9889 - FAX
Holliston, MA 01746                     


--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for  NS2.28 and NS2.27
  2005-07-03  3:56     ` Larry Hall
  2005-07-03  3:59       ` daemon
@ 2005-07-03  7:12       ` Question NS
  2005-07-03 23:11         ` Larry Hall
  1 sibling, 1 reply; 25+ messages in thread
From: Question NS @ 2005-07-03  7:12 UTC (permalink / raw)
  To: Cygwin List

Hi, Larry,

Do you mean I should install bash 3.0-2 to solve this
problem? Where is the bash test version? I have run
Cygwin well a year up to these days I intalled it
again. My memory is big enough. I would appreciate if
you would let me know.

Thanks,
--- Larry Hall
<lh-no-personal-replies-please@cygwin.com> wrote:

> At 04:46 PM 7/1/2005, you wrote:
> >Hi, all,
> >
> >While I restart cygwin after I failed to install
> >NS2.27 or NS2.28, it shows,
> >bash: /usr/bin/id: Resource temporarily unavailable
> >      6 [main] bash 62528 fork_parent: child 62624
> >died waiting for longjmp befo
> >re initialization
> >bash: fork: Bad file descriptor
> >
> >Then I restarted it, it shows 
> >bash: fork: Resource temporarily unavailable
> >
> >Your help is appreciated!
> 
> 
> Well, I've reviewed your cygcheck output and didn't
> find anything there
> which was obviously wrong.  I'm assuming that the
> version of 'bash' you 
> have installed now is the same version as the one
> you see this problem
> with (i.e. bash 2.05b-17 and not the test version
> 3.0-2).  If that is 
> the case, then you've answered Brian's (very good)
> question.  You might
> want to take a look at Eric Blake's message on a
> somewhat related thread:
> 
> <http://cygwin.com/ml/cygwin/2005-07/msg00054.html>
> 
> The last paragraph may be applicable to your
> situation.
> 
> 
> 
> 
> --
> Larry Hall                             
> http://www.rfk.com
> RFK Partners, Inc.                      (508)
> 893-9779 - RFK Office
> 838 Washington Street                   (508)
> 893-9889 - FAX
> Holliston, MA 01746                     
> 
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for    NS2.28 and NS2.27
  2005-07-03  7:12       ` Question NS
@ 2005-07-03 23:11         ` Larry Hall
  2005-07-04  3:15           ` Question NS
  2005-07-04  5:34           ` Yitzchak Scott-Thoennes
  0 siblings, 2 replies; 25+ messages in thread
From: Larry Hall @ 2005-07-03 23:11 UTC (permalink / raw)
  To: Question NS, Cygwin List

At 03:11 AM 7/3/2005, you wrote:
>Hi, Larry,
>
>Do you mean I should install bash 3.0-2 to solve this
>problem? 


No I don't.  Brian commented that he had seen this problem with
3.0, though I believe Eric has fixed this now.  In any case, my
intention was to note that you were using bash 2.05b-17, which 
Brian was suggesting you use if you weren't already.  It seems
you are using 2.05b-17 so I'd follow Brian's advice and stick with 
that for now.


>Where is the bash test version? 


Once you get to the package chooser, you can select the "Exp" radio 
button to have setup show you versions of your installed packages 
that have test version upgrades.  Be aware that once you install a 
test version, you will need to pick the "Exp" radio button each time
you run setup if you don't want to be automatically downgraded to the
current release version.


>I have run
>Cygwin well a year up to these days I intalled it
>again. My memory is big enough. I would appreciate if
>you would let me know.


My suggestion was merely for you to make sure that you don't have other
memory hungry processes running while you do this configure/make.  As Eric
notes, this is a typical reason for this error and is not a bash issue
per se.


--
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
838 Washington Street                   (508) 893-9889 - FAX
Holliston, MA 01746                     


--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for   NS2.28 and NS2.27
  2005-07-03 23:11         ` Larry Hall
@ 2005-07-04  3:15           ` Question NS
  2005-07-04 17:32             ` Larry Hall
  2005-07-04  5:34           ` Yitzchak Scott-Thoennes
  1 sibling, 1 reply; 25+ messages in thread
From: Question NS @ 2005-07-04  3:15 UTC (permalink / raw)
  To: Cygwin List

Hi, Larry,

So, you suggest I use cygwin 2.05b-17 that I am using
now. I don't have other memory cosuming process runing
while I use Cygwin, but since I use correct Cygwin
version, how can I solve the problem. I still need
your help.

Thanks,

--- Larry Hall
<lh-no-personal-replies-please@cygwin.com> wrote:

> At 03:11 AM 7/3/2005, you wrote:
> >Hi, Larry,
> >
> >Do you mean I should install bash 3.0-2 to solve
> this
> >problem? 
> 
> 
> No I don't.  Brian commented that he had seen this
> problem with
> 3.0, though I believe Eric has fixed this now.  In
> any case, my
> intention was to note that you were using bash
> 2.05b-17, which 
> Brian was suggesting you use if you weren't already.
>  It seems
> you are using 2.05b-17 so I'd follow Brian's advice
> and stick with 
> that for now.
> 
> 
> >Where is the bash test version? 
> 
> 
> Once you get to the package chooser, you can select
> the "Exp" radio 
> button to have setup show you versions of your
> installed packages 
> that have test version upgrades.  Be aware that once
> you install a 
> test version, you will need to pick the "Exp" radio
> button each time
> you run setup if you don't want to be automatically
> downgraded to the
> current release version.
> 
> 
> >I have run
> >Cygwin well a year up to these days I intalled it
> >again. My memory is big enough. I would appreciate
> if
> >you would let me know.
> 
> 
> My suggestion was merely for you to make sure that
> you don't have other
> memory hungry processes running while you do this
> configure/make.  As Eric
> notes, this is a typical reason for this error and
> is not a bash issue
> per se.
> 
> 
> --
> Larry Hall                             
> http://www.rfk.com
> RFK Partners, Inc.                      (508)
> 893-9779 - RFK Office
> 838 Washington Street                   (508)
> 893-9889 - FAX
> Holliston, MA 01746                     
> 
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for    NS2.28 and NS2.27
  2005-07-03 23:11         ` Larry Hall
  2005-07-04  3:15           ` Question NS
@ 2005-07-04  5:34           ` Yitzchak Scott-Thoennes
  1 sibling, 0 replies; 25+ messages in thread
From: Yitzchak Scott-Thoennes @ 2005-07-04  5:34 UTC (permalink / raw)
  To: cygwin

On Sun, Jul 03, 2005 at 07:10:15PM -0400, Larry Hall wrote:
> Once you get to the package chooser, you can select the "Exp" radio 
> button to have setup show you versions of your installed packages 
> that have test version upgrades.  Be aware that once you install a 
> test version, you will need to pick the "Exp" radio button each time
> you run setup if you don't want to be automatically downgraded to the
> current release version.

To be pedantic, if you are just using setup to download without
installing, you don't need to worry about downgrading.

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for     NS2.28 and NS2.27
  2005-07-04  3:15           ` Question NS
@ 2005-07-04 17:32             ` Larry Hall
  2005-07-05  6:06               ` Question NS
                                 ` (3 more replies)
  0 siblings, 4 replies; 25+ messages in thread
From: Larry Hall @ 2005-07-04 17:32 UTC (permalink / raw)
  To: Question NS, Cygwin List

At 11:15 PM 7/3/2005, you wrote:
>Hi, Larry,
>
>So, you suggest I use cygwin 2.05b-17 that I am using
>now. I don't have other memory cosuming process runing
>while I use Cygwin, but since I use correct Cygwin
>version, how can I solve the problem. I still need
>your help.


Well so far, everything that you've described and provided as info sounds
fine.  You'll need to provide a short simple example that allows others 
to try what you're doing so we can see if anyone can reproduce the problem
you're having.  You could also try running the command that causes the 
problem you report under 'strace.exe' and see if the output from it helps
localize the area where you're having the problem.  The "Resource temporarily
unavailable" message coincides with EAGAIN (error # 11) so you could check 
the resulting trace to see if this error code appears and where and when.

--
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
838 Washington Street                   (508) 893-9889 - FAX
Holliston, MA 01746                     


--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for    NS2.28 and NS2.27
  2005-07-04 17:32             ` Larry Hall
@ 2005-07-05  6:06               ` Question NS
  2005-07-06  2:55                 ` Larry Hall
  2005-07-05  6:34               ` Question NS
                                 ` (2 subsequent siblings)
  3 siblings, 1 reply; 25+ messages in thread
From: Question NS @ 2005-07-05  6:06 UTC (permalink / raw)
  To: Cygwin List, ns_users

Hi, Larry,

While I install NS2.28, it tells no gcc, but I
actually installed gcc, and during the installation,
it said my gcc is not a cross compile, I don't know if
this is matter. And if it is, which gcc version shall
I install? I ran the strace.exe command, get the
following lines, Thank you for support. I look forward
to your reply.

 m = normalize_win32_path (c:\WINDOWS\System32\Wbem)
  163   13894 [main] install 15336
mount_info::conv_to_posix_path: /cygdriv
INDOWS/System32/Wbem = conv_to_posix_path
(c:\WINDOWS\System32\Wbem)
  161   14055 [main] install 15336
mount_info::conv_to_posix_path: conv_to_
_path (c:\Program Files\ATI Technologies\ATI Control
Panel, keep-rel, no-ad
sh)
  187   14242 [main] install 15336
normalize_win32_path: c:\Program Files\A
chnologies\ATI Control Panel = normalize_win32_path
(c:\Program Files\ATI T
logies\ATI Control Panel)
  200   14442 [main] install 15336
mount_info::conv_to_posix_path: /cygdriv
rogram Files/ATI Technologies/ATI Control Panel =
conv_to_posix_path (c:\Pr
 Files\ATI Technologies\ATI Control Panel)
  200   14642 [main] install 15336
mount_info::conv_to_posix_path: conv_to_
_path (c:\Program Files\PC-Doctor for
Windows\services, keep-rel, no-add-sl
  171   14813 [main] install 15336
normalize_win32_path: c:\Program Files\P
tor for Windows\services = normalize_win32_path
(c:\Program Files\PC-Doctor
Windows\services)
  192   15005 [main] install 15336
mount_info::conv_to_posix_path: /cygdriv
rogram Files/PC-Doctor for Windows/services =
conv_to_posix_path (c:\Progra
es\PC-Doctor for Windows\services)
  195   15200 [main] install 15336
mount_info::conv_to_posix_path: conv_to_
_path (c:\matlab\bin\win32, keep-rel, no-add-slash)
  154   15354 [main] install 15336
normalize_win32_path: c:\matlab\bin\win3
ormalize_win32_path (c:\matlab\bin\win32)
  151   15505 [main] install 15336
mount_info::conv_to_posix_path: /cygdriv
atlab/bin/win32 = conv_to_posix_path
(c:\matlab\bin\win32)
  158   15663 [main] install 15336
mount_info::conv_to_posix_path: conv_to_
_path (c:\Program Files\SSH Communications
Security\SSH Secure Shell, keep-
no-add-slash)
  217   15880 [main] install 15336
normalize_win32_path: c:\Program Files\S
mmunications Security\SSH Secure Shell =
normalize_win32_path (c:\Program F
SSH Communications Security\SSH Secure Shell)
  197   16077 [main] install 15336
mount_info::conv_to_posix_path: /cygdriv
rogram Files/SSH Communications Security/SSH Secure
Shell = conv_to_posix_p
c:\Program Files\SSH Communications Security\SSH
Secure Shell)
  337   16414 [main] install 15336 win_env::add_cache:
posix /usr/local/bin
/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/PROGRAM
FILES/THINKPAD/UTILITIES:/
ive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbe
gdrive/c/Program Files/ATI Technologies/ATI Control
Panel:/cygdrive/c/Progr
les/PC-Doctor for
Windows/services:/cygdrive/c/matlab/bin/win32:/cygdrive/c
ram Files/SSH Communications Security/SSH Secure Shell
  330   16744 [main] install 15336 win_env::add_cache:
native PATH=C:\CYGWI
\local\bin;C:\CYGWIN\bin;C:\CYGWIN\bin;C:\CYGWIN\usr\X11R6\bin;c:\PROGRAM
F
THINKPAD\UTILITIES;c:\WINDOWS\system32;c:\WINDOWS;c:\WINDOWS\System32\Wbem;
ogram Files\ATI Technologies\ATI Control
Panel;c:\Program Files\PC-Doctor f
ndows\services;c:\matlab\bin\win32;c:\Program
Files\SSH Communications Secu
SSH Secure Shell
  328   17072 [main] install 15336 posify: env var
converted to PATH=/usr/l
bin:/usr/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/PROGRAM
FILES/THINKPAD/UTI
S:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/Syst
Wbem:/cygdrive/c/Program Files/ATI Technologies/ATI
Control Panel:/cygdrive
ogram Files/PC-Doctor for
Windows/services:/cygdrive/c/matlab/bin/win32:/cy
e/c/Program Files/SSH Communications Security/SSH
Secure Shell
  373   17445 [main] install 15336 environ_init:
0x10010800: PATH=/usr/loca
:/usr/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/PROGRAM
FILES/THINKPAD/UTILIT
cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System3
m:/cygdrive/c/Program Files/ATI Technologies/ATI
Control Panel:/cygdrive/c/
am Files/PC-Doctor for
Windows/services:/cygdrive/c/matlab/bin/win32:/cygdr
/Program Files/SSH Communications Security/SSH Secure
Shell
  384   17829 [main] install 15336 environ_init:
0x10010698: PATHEXT=.COM;.
BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
  195   18024 [main] install 15336 environ_init:
0x100106D8: PKG_CONFIG_PAT
r/X11R6/lib/pkgconfig
  189   18213 [main] install 15336 environ_init:
0x10010708: PRINTER=Acroba
tiller
  185   18398 [main] install 15336 environ_init:
0x10010728: PROCESSOR_ARCH
URE=x86
  184   18582 [main] install 15336 environ_init:
0x10010748: PROCESSOR_IDEN
R=x86 Family 6 Model 9 Stepping 5, GenuineIntel
  201   18783 [main] install 15336 environ_init:
0x10010790: PROCESSOR_LEVE
  155   18938 [main] install 15336 environ_init:
0x100107A8: PROCESSOR_REVI
0905
  184   19122 [main] install 15336 environ_init:
0x100107C8: PROGRAMFILES=C
gram Files
  185   19307 [main] install 15336 environ_init:
0x100107F0: PROMPT=$P$G
  153   19460 [main] install 15336 environ_init:
0x10010F30: PS1=\[\e]0;\w\
\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$
  193   19653 [main] install 15336 environ_init:
0x10010F78: PWD=/home/Peng
s-allinone-2.28
  193   19846 [main] install 15336 environ_init:
0x10010FA0: SESSIONNAME=Co

  173   20019 [main] install 15336 environ_init:
0x10010FB8: SHLVL=1
  150   20169 [main] install 15336 environ_init:
0x10010FC8: SYSTEMDRIVE=C:
  158   20327 [main] install 15336 environ_init:
0x10010FE0: SYSTEMROOT=C:\
WS
  188   20515 [main] install 15336 getwinenv: can't
set native for TEMP= si
o environ yet
  186   20701 [main] install 15336
mount_info::conv_to_posix_path: conv_to_
_path (C:\DOCUME~1\userme\LOCALS~1\Temp, no-keep-rel,
no-add-slash)
  164   20865 [main] install 15336
normalize_win32_path: C:\DOCUME~1\PengFe
ALS~1\Temp = normalize_win32_path
(C:\DOCUME~1\userme\LOCALS~1\Temp)
  160   21025 [main] install 15336
mount_info::conv_to_posix_path: /cygdriv
OCUME~1/userme/LOCALS~1/Temp = conv_to_posix_path
(C:\DOCUME~1\userme\LOC
\Temp)
  270   21295 [main] install 15336 win_env::add_cache:
posix /cygdrive/c/DO
1/userme/LOCALS~1/Temp
  142   21437 [main] install 15336 win_env::add_cache:
native TEMP=C:\DOCUM
engFei\LOCALS~1\Temp
  143   21580 [main] install 15336 posify: env var
converted to TEMP=/cygdr
/DOCUME~1/userme/LOCALS~1/Temp
  189   21769 [main] install 15336 environ_init:
0x10011030: TEMP=/cygdrive
CUME~1/userme/LOCALS~1/Temp
  196   21965 [main] install 15336 environ_init:
0x100111A0: TERM=cygwin
  153   22118 [main] install 15336 getwinenv: can't
set native for TMP= sin
 environ yet
  184   22302 [main] install 15336
mount_info::conv_to_posix_path: conv_to_
_path (C:\DOCUME~1\userme\LOCALS~1\Temp, no-keep-rel,
no-add-slash)
  156   22458 [main] install 15336
normalize_win32_path: C:\DOCUME~1\PengFe
ALS~1\Temp = normalize_win32_path
(C:\DOCUME~1\userme\LOCALS~1\Temp)
  158   22616 [main] install 15336
mount_info::conv_to_posix_path: /cygdriv
OCUME~1/userme/LOCALS~1/Temp = conv_to_posix_path
(C:\DOCUME~1\userme\LOC
\Temp)
  276   22892 [main] install 15336 win_env::add_cache:
posix /cygdrive/c/DO
1/userme/LOCALS~1/Temp
  141   23033 [main] install 15336 win_env::add_cache:
native TMP=C:\DOCUME
ngFei\LOCALS~1\Temp
  142   23175 [main] install 15336 posify: env var
converted to TMP=/cygdri
DOCUME~1/userme/LOCALS~1/Temp
  187   23362 [main] install 15336 environ_init:
0x100111B0: TMP=/cygdrive/
UME~1/userme/LOCALS~1/Temp
  188   23550 [main] install 15336 environ_init:
0x10011320: USER=userme
  151   23701 [main] install 15336 environ_init:
0x10011338: USERDOMAIN=IBM
B22F2D9
  190   23891 [main] install 15336 environ_init:
0x10011358: USERNAME=PengF
  152   24043 [main] install 15336 environ_init:
0x10011370: USERPROFILE=C:
ments and Settings\userme
  187   24230 [main] install 15336 environ_init:
0x100113A8: WINDIR=C:\WIND
  153   24383 [main] install 15336 environ_init:
0x100113C0: _=/usr/bin/str
xe
  151   24534 [main] install 15336 pinfo_init: Set
nice to 0
  107   24641 [main] install 15336 pinfo_init: pid
15336, pgid 15336
  836   25477 [main] install 15336 set_privilege: 0 =
set_privilege ((token
 SeRestorePrivilege, 1)
  213   25690 [main] install 15336 set_privilege: 1 =
set_privilege ((token
 SeChangeNotifyPrivilege, 1)
  220   25910 [main] install 15336 dtable::extend:
size 32, fds 0x61820DF0
  137   26047 [main] install 15336
normalize_posix_path: src /etc/passwd
  111   26158 [main] install 15336
normalize_posix_path: /etc/passwd = norm
_posix_path (/etc/passwd)
  147   26305 [main] install 15336
mount_info::conv_to_win32_path: conv_to_
_path (/etc/passwd)
  152   26457 [main] install 15336 set_flags: flags:
binary (0x2)
  110   26567 [main] install 15336
mount_info::conv_to_win32_path: src_path
/passwd, dst C:\CYGWIN\etc\passwd, flags 0xA, rc 0
  203   26770 [main] install 15336
symlink_info::check: not a symlink
  120   26890 [main] install 15336
symlink_info::check: 0 = symlink.check (
GWIN\etc\passwd, 0x22E8C0) (0xA)
  152   27042 [main] install 15336 path_conv::check:
this->path(C:\CYGWIN\e
sswd), has_acls(1)
  270   27312 [main] install 15336
etc::test_file_change: FindFirstFile suc
d
  525   27837 [main] install 15336 pwdgrp::load:
/etc/passwd curr_lines 7
  117   27954 [main] install 15336 pwdgrp::load:
/etc/passwd load succeeded
  164   28118 [main] install 15336
normalize_posix_path: src /etc/group
  110   28228 [main] install 15336
normalize_posix_path: /etc/group = norma
posix_path (/etc/group)
  145   28373 [main] install 15336
mount_info::conv_to_win32_path: conv_to_
_path (/etc/group)
  149   28522 [main] install 15336 set_flags: flags:
binary (0x2)
  110   28632 [main] install 15336
mount_info::conv_to_win32_path: src_path
/group, dst C:\CYGWIN\etc\group, flags 0xA, rc 0
  198   28830 [main] install 15336
symlink_info::check: not a symlink
  112   28942 [main] install 15336
symlink_info::check: 0 = symlink.check (
GWIN\etc\group, 0x22E880) (0xA)
  149   29091 [main] install 15336 path_conv::check:
this->path(C:\CYGWIN\e
oup), has_acls(1)
  247   29338 [main] install 15336
etc::test_file_change: FindFirstFile suc
d
  528   29866 [main] install 15336 pwdgrp::load:
/etc/group curr_lines 12
  113   29979 [main] install 15336 pwdgrp::load:
/etc/group load succeeded
  125   30104 [main] install 15336
cygheap_user::ontherange: what 2, pw 0x1
08
  149   30253 [main] install 15336
cygheap_user::ontherange: HOME is alread
the environment /home/userme
  335   30588 [main] install 15336 sigproc_init:
process/signal handling en
(1)
  337   30925 [main] install 15336 build_argv: argv[0]
= 'install'
  108   31033 [main] install 15336 build_argv: argc 1
  304   31337 [sig] install 15336 wait_sig:
myself->dwProcessId 15336
  129   31466 [sig] install 15336 wait_sig: entering
ReadFile loop, readsig
0, myself->sendsig 0x714
  205   31671 [main] install 15336 build_fh_pc: fh
0x61820F58
  159   31830 [main] install 15336 open_shared: name
(null), shared 0x60020
wanted 0x60020000), h 0x70C
  166   31996 [main] install 15336 _pinfo::set_ctty:
checking if /dev/tty-1
ged
  143   32139 [main] install 15336 _pinfo::set_ctty:
attached tty1073741824
15336, pid 15336, tty->pgid 15336, tty->sid 15336
 4893   37032 [main] install 15336
fhandler_base::set_flags: flags 0x10002,
lied_bin 0x0
  215   37247 [main] install 15336
fhandler_base::set_flags: O_TEXT/O_BINAR
 in flags 0x10000
  156   37403 [main] install 15336
fhandler_base::set_flags: filemode set t
ary
  278   37681 [main] install 15336
fhandler_console::open: incremented open
 now 1
  159   37840 [main] install 15336
fhandler_console::open: opened conin$ 0x
onout$ 0x2F
  174   38014 [main] install 15336
fhandler_console::output_tcsetattr: 0 =
attr (,60020018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  253   38267 [main] install 15336 build_fh_pc: fh
0x61821160
  114   38381 [main] install 15336
fhandler_base::set_flags: flags 0x10002,
lied_bin 0x0
  145   38526 [main] install 15336
fhandler_base::set_flags: O_TEXT/O_BINAR
 in flags 0x10000
  145   38671 [main] install 15336
fhandler_base::set_flags: filemode set t
ary
  219   38890 [main] install 15336
fhandler_console::open: incremented open
 now 2
  145   39035 [main] install 15336
fhandler_console::open: opened conin$ 0x
nout$ 0x33
  167   39202 [main] install 15336
fhandler_console::output_tcsetattr: 0 =
attr (,60020018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  244   39446 [main] install 15336 build_fh_pc: fh
0x61821368
  110   39556 [main] install 15336
fhandler_base::set_flags: flags 0x10002,
lied_bin 0x0
  145   39701 [main] install 15336
fhandler_base::set_flags: O_TEXT/O_BINAR
 in flags 0x10000
  152   39853 [main] install 15336
fhandler_base::set_flags: filemode set t
ary
  206   40059 [main] install 15336
fhandler_console::open: incremented open
 now 3
  143   40202 [main] install 15336
fhandler_console::open: opened conin$ 0x
onout$ 0x37
  167   40369 [main] install 15336
fhandler_console::output_tcsetattr: 0 =
attr (,60020018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  395   40764 [main] install 15336
mount_info::conv_to_posix_path: conv_to_
_path (C:\CYGWIN\bin\cygiconv-2.dll, keep-rel,
no-add-slash)
  169   40933 [main] install 15336
normalize_win32_path: C:\CYGWIN\bin\cygi
2.dll = normalize_win32_path
(C:\CYGWIN\bin\cygiconv-2.dll)
  157   41090 [main] install 15336
mount_info::conv_to_posix_path: /usr/bin
conv-2.dll = conv_to_posix_path
(C:\CYGWIN\bin\cygiconv-2.dll)
  229   41319 [main] install 15336
mount_info::conv_to_posix_path: conv_to_
_path (C:\CYGWIN\bin\cygintl-3.dll, keep-rel,
no-add-slash)
  155   41474 [main] install 15336
normalize_win32_path: C:\CYGWIN\bin\cygi
.dll = normalize_win32_path
(C:\CYGWIN\bin\cygintl-3.dll)
  153   41627 [main] install 15336
mount_info::conv_to_posix_path: /usr/bin
ntl-3.dll = conv_to_posix_path
(C:\CYGWIN\bin\cygintl-3.dll)
  200   41827 [main] install 15336 dll_crt0_1:
user_data->main 0x401530
  116   41943 [main] install 15336 __set_errno: void
dll_crt0_1(char*):878

  132   42075 [main] install 15336 wait_for_sigthread:
wait_sig_inited 0x71
 1281   43356 [main] install 15336
fhandler_console::write: 22D210, 9
  121   43477 [main] install 15336
fhandler_console::write: at 105(i) state

install:   302   43779 [main] install 15336
fhandler_console::write: 9 = wr
onsole (,..9)
  469   44248 [main] install 15336
fhandler_console::write: 22CE00, 20
  111   44359 [main] install 15336
fhandler_console::write: at 109(m) state

missing file operand  178   44537 [main] install 15336
fhandler_console::wr
20 = write_console (,..20)
  307   44844 [main] install 15336
fhandler_console::write: 6110AFF7, 1
  123   44967 [main] install 15336
fhandler_console::write: at 10(0x20) sta
 0

  242   45209 [main] install 15336
fhandler_console::write: 1 = write_conso
..1)
  559   45768 [main] install 15336
fhandler_console::write: 22D200, 43
  147   45915 [main] install 15336
fhandler_console::write: at 84(T) state
Try `install --help' for more information.
  249   46164 [main] install 15336
fhandler_console::write: 43 = write_cons
,..43)
  387   46551 [main] install 15336 close: close (1)
  129   46680 [main] install 15336
fhandler_console::close: decremented ope
, now 2
  147   46827 [main] install 15336 close: 0 = close
(1)
  347   47174 [main] install 15336 close: close (0)
  128   47302 [main] install 15336
fhandler_console::close: decremented ope
, now 1
  143   47445 [main] install 15336 close: 0 = close
(0)
  402   47847 [main] install 15336 close: close (2)
  132   47979 [main] install 15336
fhandler_console::close: decremented ope
, now 0
  142   48121 [main] install 15336 close: 0 = close
(2)
  250   48371 [main] install 15336 do_exit: do_exit
(256), exit_state 0
  108   48479 [main] install 15336 void: 0x0 = signal
(20, 0x1)
  108   48587 [main] install 15336 void: 0x0 = signal
(1, 0x1)
  106   48693 [main] install 15336 void: 0x0 = signal
(2, 0x1)
  105   48798 [main] install 15336 void: 0x0 = signal
(3, 0x1)
  119   48917 [main] install 15336 sigproc_terminate:
entering
  126   49043 [main] install 15336 proc_terminate:
nprocs 0
  110   49153 [main] install 15336 proc_terminate:
leaving
  159   49312 [main] install 15336 sigproc_terminate:
sigproc handling not
e
  140   49452 [main] install 15336 proc_terminate:
nprocs 0
  106   49558 [main] install 15336 proc_terminate:
leaving
  116   49674 [main] install 15336 __to_clock_t:
dwHighDateTime 0, dwLowDat
 200288
  146   49820 [main] install 15336 __to_clock_t: total
00000000 00000014
  122   49942 [main] install 15336 __to_clock_t:
dwHighDateTime 0, dwLowDat
 300432
  143   50085 [main] install 15336 __to_clock_t: total
00000000 0000001E
  390   50475 [sig] install 15336 wait_sig: done
  410   50885 [sig] install 15336 _cygtls::remove:
wait 0x0
  222   51107 [main] install 15336
pinfo::maybe_set_exit_code_from_windows:
15336, exit value - old 0x80000100, windows
0xDEADBEEF, cygwin 0x80000100



--- Larry Hall
<lh-no-personal-replies-please@cygwin.com> wrote:

> At 11:15 PM 7/3/2005, you wrote:
> >Hi, Larry,
> >
> >So, you suggest I use cygwin 2.05b-17 that I am
> using
> >now. I don't have other memory cosuming process
> runing
> >while I use Cygwin, but since I use correct Cygwin
> >version, how can I solve the problem. I still need
> >your help.
> 
> 
> Well so far, everything that you've described and
> provided as info sounds
> fine.  You'll need to provide a short simple example
> that allows others 
> to try what you're doing so we can see if anyone can
> reproduce the problem
> you're having.  You could also try running the
> command that causes the 
> problem you report under 'strace.exe' and see if the
> output from it helps
> localize the area where you're having the problem. 
> The "Resource temporarily
> unavailable" message coincides with EAGAIN (error #
> 11) so you could check 
> the resulting trace to see if this error code
> appears and where and when.
> 
> --
> Larry Hall                             
> http://www.rfk.com
> RFK Partners, Inc.                      (508)
> 893-9779 - RFK Office
> 838 Washington Street                   (508)
> 893-9889 - FAX
> Holliston, MA 01746                     
> 
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for    NS2.28 and NS2.27
  2005-07-04 17:32             ` Larry Hall
  2005-07-05  6:06               ` Question NS
@ 2005-07-05  6:34               ` Question NS
  2005-07-05  6:47               ` Question NS
  2005-07-05  6:47               ` Question NS
  3 siblings, 0 replies; 25+ messages in thread
From: Question NS @ 2005-07-05  6:34 UTC (permalink / raw)
  To: Cygwin List, ns-users

Hi, Larry Hall,

I run installation again for NS2.28. It stopped with
errors:

C:\CYGWIN\bin\gcc.exe (62636): *** thread handle not
set - 0x0<0x0>, Win32 error
 1450
gcc: Internal error: Hangup (program as)
Please submit a full bug report.
See <URL:http://gcc.gnu.org/bugs.html> for
instructions.
make: *** [tkText.o] Error 1
tk8.4.5 make failed! Exiting ...
For problems with Tcl/Tk see http://www.scriptics.com

and I run strace.ext ./install, I got the following
line,

m = normalize_win32_path (c:\WINDOWS\System32\Wbem)
  156   40878 [main] install 63420
mount_info::conv_to_posix_path: /cygdrive/c/W
INDOWS/System32/Wbem = conv_to_posix_path
(c:\WINDOWS\System32\Wbem)
  161   41039 [main] install 63420
mount_info::conv_to_posix_path: conv_to_posix
_path (c:\Program Files\ATI Technologies\ATI Control
Panel, keep-rel, no-add-sla
sh)
  215   41254 [main] install 63420
normalize_win32_path: c:\Program Files\ATI Te
chnologies\ATI Control Panel = normalize_win32_path
(c:\Program Files\ATI Techno
logies\ATI Control Panel)
  196   41450 [main] install 63420
mount_info::conv_to_posix_path: /cygdrive/c/P
rogram Files/ATI Technologies/ATI Control Panel =
conv_to_posix_path (c:\Program
 Files\ATI Technologies\ATI Control Panel)
  200   41650 [main] install 63420
mount_info::conv_to_posix_path: conv_to_posix
_path (c:\Program Files\PC-Doctor for
Windows\services, keep-rel, no-add-slash)
  162   41812 [main] install 63420
normalize_win32_path: c:\Program Files\PC-Doc
tor for Windows\services = normalize_win32_path
(c:\Program Files\PC-Doctor for
Windows\services)
  193   42005 [main] install 63420
mount_info::conv_to_posix_path: /cygdrive/c/P
rogram Files/PC-Doctor for Windows/services =
conv_to_posix_path (c:\Program Fil
es\PC-Doctor for Windows\services)
  207   42212 [main] install 63420
mount_info::conv_to_posix_path: conv_to_posix
_path (c:\matlab\bin\win32, keep-rel, no-add-slash)
  153   42365 [main] install 63420
normalize_win32_path: c:\matlab\bin\win32 = n
ormalize_win32_path (c:\matlab\bin\win32)
  154   42519 [main] install 63420
mount_info::conv_to_posix_path: /cygdrive/c/m
atlab/bin/win32 = conv_to_posix_path
(c:\matlab\bin\win32)
  159   42678 [main] install 63420
mount_info::conv_to_posix_path: conv_to_posix
_path (c:\Program Files\SSH Communications
Security\SSH Secure Shell, keep-rel,
no-add-slash)
  190   42868 [main] install 63420
normalize_win32_path: c:\Program Files\SSH Co
mmunications Security\SSH Secure Shell =
normalize_win32_path (c:\Program Files\
SSH Communications Security\SSH Secure Shell)
  198   43066 [main] install 63420
mount_info::conv_to_posix_path: /cygdrive/c/P
rogram Files/SSH Communications Security/SSH Secure
Shell = conv_to_posix_path (
c:\Program Files\SSH Communications Security\SSH
Secure Shell)
  344   43410 [main] install 63420 win_env::add_cache:
posix /usr/local/bin:/usr
/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/PROGRAM
FILES/THINKPAD/UTILITIES:/cygdr
ive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cy
gdrive/c/Program Files/ATI Technologies/ATI Control
Panel:/cygdrive/c/Program Fi
les/PC-Doctor for
Windows/services:/cygdrive/c/matlab/bin/win32:/cygdrive/c/Prog
ram Files/SSH Communications Security/SSH Secure Shell
  335   43745 [main] install 63420 win_env::add_cache:
native PATH=C:\CYGWIN\usr
\local\bin;C:\CYGWIN\bin;C:\CYGWIN\bin;C:\CYGWIN\usr\X11R6\bin;c:\PROGRAM
FILES\
THINKPAD\UTILITIES;c:\WINDOWS\system32;c:\WINDOWS;c:\WINDOWS\System32\Wbem;c:\Pr
ogram Files\ATI Technologies\ATI Control
Panel;c:\Program Files\PC-Doctor for Wi
ndows\services;c:\matlab\bin\win32;c:\Program
Files\SSH Communications Security\
SSH Secure Shell
  323   44068 [main] install 63420 posify: env var
converted to PATH=/usr/local/
bin:/usr/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/PROGRAM
FILES/THINKPAD/UTILITIE
S:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/
Wbem:/cygdrive/c/Program Files/ATI Technologies/ATI
Control Panel:/cygdrive/c/Pr
ogram Files/PC-Doctor for
Windows/services:/cygdrive/c/matlab/bin/win32:/cygdriv
e/c/Program Files/SSH Communications Security/SSH
Secure Shell
  383   44451 [main] install 63420 environ_init:
0x10010818: PATH=/usr/local/bin
:/usr/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/PROGRAM
FILES/THINKPAD/UTILITIES:/
cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbe
m:/cygdrive/c/Program Files/ATI Technologies/ATI
Control Panel:/cygdrive/c/Progr
am Files/PC-Doctor for
Windows/services:/cygdrive/c/matlab/bin/win32:/cygdrive/c
/Program Files/SSH Communications Security/SSH Secure
Shell
  380   44831 [main] install 63420 environ_init:
0x100106B0: PATHEXT=.COM;.EXE;.
BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
  196   45027 [main] install 63420 environ_init:
0x100106F0: PKG_CONFIG_PATH=/us
r/X11R6/lib/pkgconfig
  198   45225 [main] install 63420 environ_init:
0x10010720: PRINTER=Acrobat Dis
tiller
  186   45411 [main] install 63420 environ_init:
0x10010740: PROCESSOR_ARCHITECT
URE=x86
  186   45597 [main] install 63420 environ_init:
0x10010760: PROCESSOR_IDENTIFIE
R=x86 Family 6 Model 9 Stepping 5, GenuineIntel
  195   45792 [main] install 63420 environ_init:
0x100107A8: PROCESSOR_LEVEL=6
  154   45946 [main] install 63420 environ_init:
0x100107C0: PROCESSOR_REVISION=
0905
  192   46138 [main] install 63420 environ_init:
0x100107E0: PROGRAMFILES=C:\Pro
gram Files
  187   46325 [main] install 63420 environ_init:
0x10010808: PROMPT=$P$G
  153   46478 [main] install 63420 environ_init:
0x10010F48: PS1=\[\e]0;\w\a\]\n
\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$
  195   46673 [main] install 63420 environ_init:
0x10010F90: PWD=/home/userme/n
s-allinone-2.28
  187   46860 [main] install 63420 environ_init:
0x10010FB8: SESSIONNAME=Console

  175   47035 [main] install 63420 environ_init:
0x10010FD0: SHLVL=1
  160   47195 [main] install 63420 environ_init:
0x10010FE0: SYSTEMDRIVE=C:
  164   47359 [main] install 63420 environ_init:
0x10010FF8: SYSTEMROOT=C:\WINDO
WS
  186   47545 [main] install 63420 getwinenv: can't
set native for TEMP= since n
o environ yet
  187   47732 [main] install 63420
mount_info::conv_to_posix_path: conv_to_posix
_path (C:\DOCUME~1\userme\LOCALS~1\Temp, no-keep-rel,
no-add-slash)
  158   47890 [main] install 63420
normalize_win32_path: C:\DOCUME~1\userme\LOC
ALS~1\Temp = normalize_win32_path
(C:\DOCUME~1\userme\LOCALS~1\Temp)
  160   48050 [main] install 63420
mount_info::conv_to_posix_path: /cygdrive/c/D
OCUME~1/userme/LOCALS~1/Temp = conv_to_posix_path
(C:\DOCUME~1\userme\LOCALS~1
\Temp)
  281   48331 [main] install 63420 win_env::add_cache:
posix /cygdrive/c/DOCUME~
1/userme/LOCALS~1/Temp
  144   48475 [main] install 63420 win_env::add_cache:
native TEMP=C:\DOCUME~1\P
engFei\LOCALS~1\Temp
  144   48619 [main] install 63420 posify: env var
converted to TEMP=/cygdrive/c
/DOCUME~1/userme/LOCALS~1/Temp
  189   48808 [main] install 63420 environ_init:
0x10011048: TEMP=/cygdrive/c/DO
CUME~1/userme/LOCALS~1/Temp
  191   48999 [main] install 63420 environ_init:
0x100111B8: TERM=cygwin
  160   49159 [main] install 63420 getwinenv: can't
set native for TMP= since no
 environ yet
  185   49344 [main] install 63420
mount_info::conv_to_posix_path: conv_to_posix
_path (C:\DOCUME~1\userme\LOCALS~1\Temp, no-keep-rel,
no-add-slash)
  156   49500 [main] install 63420
normalize_win32_path: C:\DOCUME~1\userme\LOC
ALS~1\Temp = normalize_win32_path
(C:\DOCUME~1\userme\LOCALS~1\Temp)
  160   49660 [main] install 63420
mount_info::conv_to_posix_path: /cygdrive/c/D
OCUME~1/userme/LOCALS~1/Temp = conv_to_posix_path
(C:\DOCUME~1\userme\LOCALS~1
\Temp)
  272   49932 [main] install 63420 win_env::add_cache:
posix /cygdrive/c/DOCUME~
1/userme/LOCALS~1/Temp
  142   50074 [main] install 63420 win_env::add_cache:
native TMP=C:\DOCUME~1\Pe
ngFei\LOCALS~1\Temp
  151   50225 [main] install 63420 posify: env var
converted to TMP=/cygdrive/c/
DOCUME~1/userme/LOCALS~1/Temp
  188   50413 [main] install 63420 environ_init:
0x100111C8: TMP=/cygdrive/c/DOC
UME~1/userme/LOCALS~1/Temp
  188   50601 [main] install 63420 environ_init:
0x10011338: USER=userme
  152   50753 [main] install 63420 environ_init:
0x10011350: USERDOMAIN=IBM-F625
B22F2D9
  184   50937 [main] install 63420 environ_init:
0x10011370: USERNAME=userme
  153   51090 [main] install 63420 environ_init:
0x10011388: USERPROFILE=C:\Docu
ments and Settings\userme
  213   51303 [main] install 63420 environ_init:
0x100113C0: WINDIR=C:\WINDOWS
  152   51455 [main] install 63420 environ_init:
0x100113D8: _=/usr/bin/strace.e
xe
  152   51607 [main] install 63420 pinfo_init: Set
nice to 0
  107   51714 [main] install 63420 pinfo_init: pid
63420, pgid 63420
  812   52526 [main] install 63420 set_privilege: 0 =
set_privilege ((token 758)
 SeRestorePrivilege, 1)
  212   52738 [main] install 63420 set_privilege: 1 =
set_privilege ((token 758)
 SeChangeNotifyPrivilege, 1)
  194   52932 [main] install 63420 dtable::extend:
size 32, fds 0x61820DF0
  137   53069 [main] install 63420
normalize_posix_path: src /etc/passwd
  119   53188 [main] install 63420
normalize_posix_path: /etc/passwd = normalize
_posix_path (/etc/passwd)
  147   53335 [main] install 63420
mount_info::conv_to_win32_path: conv_to_win32
_path (/etc/passwd)
  152   53487 [main] install 63420 set_flags: flags:
binary (0x2)
  108   53595 [main] install 63420
mount_info::conv_to_win32_path: src_path /etc
/passwd, dst C:\CYGWIN\etc\passwd, flags 0xA, rc 0
  204   53799 [main] install 63420
symlink_info::check: not a symlink
  113   53912 [main] install 63420
symlink_info::check: 0 = symlink.check (C:\CY
GWIN\etc\passwd, 0x22E8C0) (0xA)
  152   54064 [main] install 63420 path_conv::check:
this->path(C:\CYGWIN\etc\pa
sswd), has_acls(1)
  278   54342 [main] install 63420
etc::test_file_change: FindFirstFile succeede
d
  513   54855 [main] install 63420 pwdgrp::load:
/etc/passwd curr_lines 7
  117   54972 [main] install 63420 pwdgrp::load:
/etc/passwd load succeeded
  235   55207 [main] install 63420
normalize_posix_path: src /etc/group
  117   55324 [main] install 63420
normalize_posix_path: /etc/group = normalize_
posix_path (/etc/group)
  149   55473 [main] install 63420
mount_info::conv_to_win32_path: conv_to_win32
_path (/etc/group)
  151   55624 [main] install 63420 set_flags: flags:
binary (0x2)
  109   55733 [main] install 63420
mount_info::conv_to_win32_path: src_path /etc
/group, dst C:\CYGWIN\etc\group, flags 0xA, rc 0
  193   55926 [main] install 63420
symlink_info::check: not a symlink
  111   56037 [main] install 63420
symlink_info::check: 0 = symlink.check (C:\CY
GWIN\etc\group, 0x22E880) (0xA)
  160   56197 [main] install 63420 path_conv::check:
this->path(C:\CYGWIN\etc\gr
oup), has_acls(1)
  248   56445 [main] install 63420
etc::test_file_change: FindFirstFile succeede
d
  522   56967 [main] install 63420 pwdgrp::load:
/etc/group curr_lines 12
  114   57081 [main] install 63420 pwdgrp::load:
/etc/group load succeeded
  132   57213 [main] install 63420
cygheap_user::ontherange: what 2, pw 0x100118
20
  148   57361 [main] install 63420
cygheap_user::ontherange: HOME is already in
the environment /home/userme
  344   57705 [main] install 63420 sigproc_init:
process/signal handling enabled
(1)
  329   58034 [main] install 63420 build_argv: argv[0]
= 'install'
  115   58149 [main] install 63420 build_argv: argc 1
  304   58453 [sig] install 63420 wait_sig:
myself->dwProcessId 63420
  129   58582 [sig] install 63420 wait_sig: entering
ReadFile loop, readsig 0x72
0, myself->sendsig 0x714
  206   58788 [main] install 63420 build_fh_pc: fh
0x61820F58
  151   58939 [main] install 63420 open_shared: name
(null), shared 0x60020000 (
wanted 0x60020000), h 0x70C
  165   59104 [main] install 63420 _pinfo::set_ctty:
checking if /dev/tty-1 chan
ged
  151   59255 [main] install 63420 _pinfo::set_ctty:
attached tty1073741824 sid
63420, pid 63420, tty->pgid 63420, tty->sid 63420
30248   89503 [main] install 63420
fhandler_base::set_flags: flags 0x10002, supp
lied_bin 0x0
  222   89725 [main] install 63420
fhandler_base::set_flags: O_TEXT/O_BINARY set
 in flags 0x10000
  157   89882 [main] install 63420
fhandler_base::set_flags: filemode set to bin
ary
  280   90162 [main] install 63420
fhandler_console::open: incremented open_fhs,
 now 1
  160   90322 [main] install 63420
fhandler_console::open: opened conin$ 0x2B, c
onout$ 0x2F
  175   90497 [main] install 63420
fhandler_console::output_tcsetattr: 0 = tcset
attr (,60020018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  253   90750 [main] install 63420 build_fh_pc: fh
0x61821160
  113   90863 [main] install 63420
fhandler_base::set_flags: flags 0x10002, supp
lied_bin 0x0
  146   91009 [main] install 63420
fhandler_base::set_flags: O_TEXT/O_BINARY set
 in flags 0x10000
  145   91154 [main] install 63420
fhandler_base::set_flags: filemode set to bin
ary
  244   91398 [main] install 63420
fhandler_console::open: incremented open_fhs,
 now 2
  145   91543 [main] install 63420
fhandler_console::open: opened conin$ 0xB, co
nout$ 0x33
  167   91710 [main] install 63420
fhandler_console::output_tcsetattr: 0 = tcset
attr (,60020018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  243   91953 [main] install 63420 build_fh_pc: fh
0x61821368
  109   92062 [main] install 63420
fhandler_base::set_flags: flags 0x10002, supp
lied_bin 0x0
  144   92206 [main] install 63420
fhandler_base::set_flags: O_TEXT/O_BINARY set
 in flags 0x10000
  150   92356 [main] install 63420
fhandler_base::set_flags: filemode set to bin
ary
  205   92561 [main] install 63420
fhandler_console::open: incremented open_fhs,
 now 3
  142   92703 [main] install 63420
fhandler_console::open: opened conin$ 0x13, c
onout$ 0x37
  167   92870 [main] install 63420
fhandler_console::output_tcsetattr: 0 = tcset
attr (,60020018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  405   93275 [main] install 63420
mount_info::conv_to_posix_path: conv_to_posix
_path (C:\CYGWIN\bin\cygiconv-2.dll, keep-rel,
no-add-slash)
  163   93438 [main] install 63420
normalize_win32_path: C:\CYGWIN\bin\cygiconv-
2.dll = normalize_win32_path
(C:\CYGWIN\bin\cygiconv-2.dll)
  160   93598 [main] install 63420
mount_info::conv_to_posix_path: /usr/bin/cygi
conv-2.dll = conv_to_posix_path
(C:\CYGWIN\bin\cygiconv-2.dll)
  232   93830 [main] install 63420
mount_info::conv_to_posix_path: conv_to_posix
_path (C:\CYGWIN\bin\cygintl-3.dll, keep-rel,
no-add-slash)
  156   93986 [main] install 63420
normalize_win32_path: C:\CYGWIN\bin\cygintl-3
.dll = normalize_win32_path
(C:\CYGWIN\bin\cygintl-3.dll)
  155   94141 [main] install 63420
mount_info::conv_to_posix_path: /usr/bin/cygi
ntl-3.dll = conv_to_posix_path
(C:\CYGWIN\bin\cygintl-3.dll)
  211   94352 [main] install 63420 dll_crt0_1:
user_data->main 0x401530
  111   94463 [main] install 63420 __set_errno: void
dll_crt0_1(char*):878 val 0

  133   94596 [main] install 63420 wait_for_sigthread:
wait_sig_inited 0x71C
 1296   95892 [main] install 63420
fhandler_console::write: 22D210, 9
  122   96014 [main] install 63420
fhandler_console::write: at 105(i) state is 0

install:   306   96320 [main] install 63420
fhandler_console::write: 9 = write_c
onsole (,..9)
  467   96787 [main] install 63420
fhandler_console::write: 22CE00, 20
  110   96897 [main] install 63420
fhandler_console::write: at 109(m) state is 0

missing file operand  178   97075 [main] install 63420
fhandler_console::write:
20 = write_console (,..20)
  313   97388 [main] install 63420
fhandler_console::write: 6110AFF7, 1
  109   97497 [main] install 63420
fhandler_console::write: at 10(0x20) state is
 0

  244   97741 [main] install 63420
fhandler_console::write: 1 = write_console (,
..1)
  564   98305 [main] install 63420
fhandler_console::write: 22D200, 43
  110   98415 [main] install 63420
fhandler_console::write: at 84(T) state is 0
Try `install --help' for more information.
  248   98663 [main] install 63420
fhandler_console::write: 43 = write_console (
,..43)
  389   99052 [main] install 63420 close: close (1)
  127   99179 [main] install 63420
fhandler_console::close: decremented open_fhs
, now 2
  151   99330 [main] install 63420 close: 0 = close
(1)
  339   99669 [main] install 63420 close: close (0)
  127   99796 [main] install 63420
fhandler_console::close: decremented open_fhs
, now 1
  143   99939 [main] install 63420 close: 0 = close
(0)
  413  100352 [main] install 63420 close: close (2)
  126  100478 [main] install 63420
fhandler_console::close: decremented open_fhs
, now 0
  142  100620 [main] install 63420 close: 0 = close
(2)
  252  100872 [main] install 63420 do_exit: do_exit
(256), exit_state 0
  108  100980 [main] install 63420 void: 0x0 = signal
(20, 0x1)
  107  101087 [main] install 63420 void: 0x0 = signal
(1, 0x1)
  105  101192 [main] install 63420 void: 0x0 = signal
(2, 0x1)
  134  101326 [main] install 63420 void: 0x0 = signal
(3, 0x1)
  112  101438 [main] install 63420 sigproc_terminate:
entering
  123  101561 [main] install 63420 proc_terminate:
nprocs 0
  106  101667 [main] install 63420 proc_terminate:
leaving
  159  101826 [main] install 63420 sigproc_terminate:
sigproc handling not activ
e
  140  101966 [main] install 63420 proc_terminate:
nprocs 0
  106  102072 [main] install 63420 proc_terminate:
leaving
  115  102187 [main] install 63420 __to_clock_t:
dwHighDateTime 0, dwLowDateTime
 200288
  153  102340 [main] install 63420 __to_clock_t: total
00000000 00000014
  112  102452 [main] install 63420 __to_clock_t:
dwHighDateTime 0, dwLowDateTime
 200288
  142  102594 [main] install 63420 __to_clock_t: total
00000000 00000014
  382  102976 [sig] install 63420 wait_sig: done
  402  103378 [sig] install 63420 _cygtls::remove:
wait 0x0
  223  103601 [main] install 63420
pinfo::maybe_set_exit_code_from_windows: pid
63420, exit value - old 0x80000100, windows
0xDEADBEEF, cygwin 0x80000100

I don't know where the error is, I would appreciate
your help.

Thanks very much!
--- Larry Hall
<lh-no-personal-replies-please@cygwin.com> wrote:

> At 11:15 PM 7/3/2005, you wrote:
> >Hi, Larry,
> >
> >So, you suggest I use cygwin 2.05b-17 that I am
> using
> >now. I don't have other memory cosuming process
> runing
> >while I use Cygwin, but since I use correct Cygwin
> >version, how can I solve the problem. I still need
> >your help.
> 
> 
> Well so far, everything that you've described and
> provided as info sounds
> fine.  You'll need to provide a short simple example
> that allows others 
> to try what you're doing so we can see if anyone can
> reproduce the problem
> you're having.  You could also try running the
> command that causes the 
> problem you report under 'strace.exe' and see if the
> output from it helps
> localize the area where you're having the problem. 
> The "Resource temporarily
> unavailable" message coincides with EAGAIN (error #
> 11) so you could check 
> the resulting trace to see if this error code
> appears and where and when.
> 
> --
> Larry Hall                             
> http://www.rfk.com
> RFK Partners, Inc.                      (508)
> 893-9779 - RFK Office
> 838 Washington Street                   (508)
> 893-9889 - FAX
> Holliston, MA 01746                     
> 
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for    NS2.28 and NS2.27
  2005-07-04 17:32             ` Larry Hall
  2005-07-05  6:06               ` Question NS
  2005-07-05  6:34               ` Question NS
@ 2005-07-05  6:47               ` Question NS
  2005-07-05  6:47               ` Question NS
  3 siblings, 0 replies; 25+ messages in thread
From: Question NS @ 2005-07-05  6:47 UTC (permalink / raw)
  To: Cygwin List

Hi, Larry,

I reinstall NS2.28 again, it stopped at a different
place this time, that is, not at TK installation but
at TCLCL installation,
============================================================
* Build Tclcl-1.16
============================================================
No .configure file found in current directory
Continuing with default options...
checking build system type... i686-pc-cygwin
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking for gcc... gcc
checking for C compiler default output... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... .exe
checking for suffix of object files... o
checking whether we are using the GNU C compiler...
yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none
needed
checking for g++... g++
checking whether we are using the GNU C++ compiler...
yes
checking whether g++ accepts -g... ./configure: line
2538: /usr/bin/sed: Resourc
e temporarily unavailable
./configure: line 2542: /usr/bin/rm: Resource
temporarily unavailable
no
./configure: line 2570: /usr/bin/cat: Resource
temporarily unavailable
./configure: fork: Resource temporarily unavailable
./configure: fork: Resource temporarily unavailable
./configure: line 2574: /usr/bin/cat: Resource
temporarily unavailable
./configure: fork: Resource temporarily unavailable
./configure: fork: Resource temporarily unavailable
tclcl-1.16 configuration failed! Exiting ...
Please check
http://www.isi.edu/nsnam/ns/ns-problems.html
for common problems and bug fixes.
--------------------------------------------------
Then, I run strace.exe again, got the following line,
You help is appreciated!

  152   39317 [main] install 980 normalize_win32_path:
c:\WINDOWS = normalize_wi
n32_path (c:\WINDOWS)
  155   39472 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/WIN
DOWS = conv_to_posix_path (c:\WINDOWS)
  152   39624 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (c:\WINDOWS\System32\Wbem, keep-rel, no-add-slash)
  156   39780 [main] install 980 normalize_win32_path:
c:\WINDOWS\System32\Wbem
= normalize_win32_path (c:\WINDOWS\System32\Wbem)
  155   39935 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/WIN
DOWS/System32/Wbem = conv_to_posix_path
(c:\WINDOWS\System32\Wbem)
  161   40096 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (c:\Program Files\ATI Technologies\ATI Control
Panel, keep-rel, no-add-slash
)
  189   40285 [main] install 980 normalize_win32_path:
c:\Program Files\ATI Tech
nologies\ATI Control Panel = normalize_win32_path
(c:\Program Files\ATI Technolo
gies\ATI Control Panel)
  390   40675 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/Pro
gram Files/ATI Technologies/ATI Control Panel =
conv_to_posix_path (c:\Program F
iles\ATI Technologies\ATI Control Panel)
  202   40877 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (c:\Program Files\PC-Doctor for Windows\services,
keep-rel, no-add-slash)
  162   41039 [main] install 980 normalize_win32_path:
c:\Program Files\PC-Docto
r for Windows\services = normalize_win32_path
(c:\Program Files\PC-Doctor for Wi
ndows\services)
  192   41231 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/Pro
gram Files/PC-Doctor for Windows/services =
conv_to_posix_path (c:\Program Files
\PC-Doctor for Windows\services)
  204   41435 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (c:\matlab\bin\win32, keep-rel, no-add-slash)
  153   41588 [main] install 980 normalize_win32_path:
c:\matlab\bin\win32 = nor
malize_win32_path (c:\matlab\bin\win32)
  154   41742 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/mat
lab/bin/win32 = conv_to_posix_path
(c:\matlab\bin\win32)
  158   41900 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (c:\Program Files\SSH Communications Security\SSH
Secure Shell, keep-rel, no
-add-slash)
  189   42089 [main] install 980 normalize_win32_path:
c:\Program Files\SSH Comm
unications Security\SSH Secure Shell =
normalize_win32_path (c:\Program Files\SS
H Communications Security\SSH Secure Shell)
  199   42288 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/Pro
gram Files/SSH Communications Security/SSH Secure
Shell = conv_to_posix_path (c:
\Program Files\SSH Communications Security\SSH Secure
Shell)
  505   42793 [main] install 980 win_env::add_cache:
posix /usr/local/bin:/usr/b
in:/usr/bin:/usr/X11R6/bin:/cygdrive/c/PROGRAM
FILES/THINKPAD/UTILITIES:/cygdriv
e/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygd
rive/c/Program Files/ATI Technologies/ATI Control
Panel:/cygdrive/c/Program File
s/PC-Doctor for
Windows/services:/cygdrive/c/matlab/bin/win32:/cygdrive/c/Progra
m Files/SSH Communications Security/SSH Secure Shell
  336   43129 [main] install 980 win_env::add_cache:
native PATH=C:\CYGWIN\usr\l
ocal\bin;C:\CYGWIN\bin;C:\CYGWIN\bin;C:\CYGWIN\usr\X11R6\bin;c:\PROGRAM
FILES\TH
INKPAD\UTILITIES;c:\WINDOWS\system32;c:\WINDOWS;c:\WINDOWS\System32\Wbem;c:\Prog
ram Files\ATI Technologies\ATI Control
Panel;c:\Program Files\PC-Doctor for Wind
ows\services;c:\matlab\bin\win32;c:\Program Files\SSH
Communications Security\SS
H Secure Shell
  508   43637 [main] install 980 posify: env var
converted to PATH=/usr/local/bi
n:/usr/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/PROGRAM
FILES/THINKPAD/UTILITIES:
/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wb
em:/cygdrive/c/Program Files/ATI Technologies/ATI
Control Panel:/cygdrive/c/Prog
ram Files/PC-Doctor for
Windows/services:/cygdrive/c/matlab/bin/win32:/cygdrive/
c/Program Files/SSH Communications Security/SSH Secure
Shell
  542   44179 [main] install 980 environ_init:
0x10010800: PATH=/usr/local/bin:/
usr/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/PROGRAM
FILES/THINKPAD/UTILITIES:/cy
gdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:
/cygdrive/c/Program Files/ATI Technologies/ATI Control
Panel:/cygdrive/c/Program
 Files/PC-Doctor for
Windows/services:/cygdrive/c/matlab/bin/win32:/cygdrive/c/P
rogram Files/SSH Communications Security/SSH Secure
Shell
  385   44564 [main] install 980 environ_init:
0x10010698: PATHEXT=.COM;.EXE;.BA
T;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
  194   44758 [main] install 980 environ_init:
0x100106D8: PKG_CONFIG_PATH=/usr/
X11R6/lib/pkgconfig
  189   44947 [main] install 980 environ_init:
0x10010708: PRINTER=Acrobat Disti
ller
  183   45130 [main] install 980 environ_init:
0x10010728: PROCESSOR_ARCHITECTUR
E=x86
  185   45315 [main] install 980 environ_init:
0x10010748: PROCESSOR_IDENTIFIER=
x86 Family 6 Model 9 Stepping 5, GenuineIntel
  201   45516 [main] install 980 environ_init:
0x10010790: PROCESSOR_LEVEL=6
  154   45670 [main] install 980 environ_init:
0x100107A8: PROCESSOR_REVISION=09
05
  184   45854 [main] install 980 environ_init:
0x100107C8: PROGRAMFILES=C:\Progr
am Files
  184   46038 [main] install 980 environ_init:
0x100107F0: PROMPT=$P$G
  152   46190 [main] install 980 environ_init:
0x10010F30: PS1=\[\e]0;\w\a\]\n\[
\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$
  355   46545 [main] install 980 environ_init:
0x10010F78: PWD=/home/PengFei/ns-
allinone-2.28
  187   46732 [main] install 980 environ_init:
0x10010FA0: SESSIONNAME=Console
  154   46886 [main] install 980 environ_init:
0x10010FB8: SHLVL=1
  149   47035 [main] install 980 environ_init:
0x10010FC8: SYSTEMDRIVE=C:
  158   47193 [main] install 980 environ_init:
0x10010FE0: SYSTEMROOT=C:\WINDOWS

  208   47401 [main] install 980 getwinenv: can't set
native for TEMP= since no
environ yet
  188   47589 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (C:\DOCUME~1\PengFei\LOCALS~1\Temp, no-keep-rel,
no-add-slash)
  157   47746 [main] install 980 normalize_win32_path:
C:\DOCUME~1\PengFei\LOCAL
S~1\Temp = normalize_win32_path
(C:\DOCUME~1\PengFei\LOCALS~1\Temp)
  160   47906 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/DOC
UME~1/PengFei/LOCALS~1/Temp = conv_to_posix_path
(C:\DOCUME~1\PengFei\LOCALS~1\T
emp)
  270   48176 [main] install 980 win_env::add_cache:
posix /cygdrive/c/DOCUME~1/
PengFei/LOCALS~1/Temp
  142   48318 [main] install 980 win_env::add_cache:
native TEMP=C:\DOCUME~1\Pen
gFei\LOCALS~1\Temp
  150   48468 [main] install 980 posify: env var
converted to TEMP=/cygdrive/c/D
OCUME~1/PengFei/LOCALS~1/Temp
  187   48655 [main] install 980 environ_init:
0x10011030: TEMP=/cygdrive/c/DOCU
ME~1/PengFei/LOCALS~1/Temp
  189   48844 [main] install 980 environ_init:
0x100111A0: TERM=cygwin
  152   48996 [main] install 980 getwinenv: can't set
native for TMP= since no e
nviron yet
  433   49429 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (C:\DOCUME~1\PengFei\LOCALS~1\Temp, no-keep-rel,
no-add-slash)
  157   49586 [main] install 980 normalize_win32_path:
C:\DOCUME~1\PengFei\LOCAL
S~1\Temp = normalize_win32_path
(C:\DOCUME~1\PengFei\LOCALS~1\Temp)
  159   49745 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/DOC
UME~1/PengFei/LOCALS~1/Temp = conv_to_posix_path
(C:\DOCUME~1\PengFei\LOCALS~1\T
emp)
  270   50015 [main] install 980 win_env::add_cache:
posix /cygdrive/c/DOCUME~1/
PengFei/LOCALS~1/Temp
  142   50157 [main] install 980 win_env::add_cache:
native TMP=C:\DOCUME~1\Peng
Fei\LOCALS~1\Temp
  142   50299 [main] install 980 posify: env var
converted to TMP=/cygdrive/c/DO
CUME~1/PengFei/LOCALS~1/Temp
  213   50512 [main] install 980 environ_init:
0x100111B0: TMP=/cygdrive/c/DOCUM
E~1/PengFei/LOCALS~1/Temp
  188   50700 [main] install 980 environ_init:
0x10011320: USER=PengFei
  150   50850 [main] install 980 environ_init:
0x10011338: USERDOMAIN=IBM-F625B2
2F2D9
  181   51031 [main] install 980 environ_init:
0x10011358: USERNAME=PengFei
  152   51183 [main] install 980 environ_init:
0x10011370: USERPROFILE=C:\Docume
nts and Settings\PengFei
  192   51375 [main] install 980 environ_init:
0x100113A8: WINDIR=C:\WINDOWS
  151   51526 [main] install 980 environ_init:
0x100113C0: _=/usr/bin/strace.exe

  143   51669 [main] install 980 pinfo_init: Set nice
to 0
  106   51775 [main] install 980 pinfo_init: pid 980,
pgid 980
  826   52601 [main] install 980 set_privilege: 0 =
set_privilege ((token 758) S
eRestorePrivilege, 1)
  212   52813 [main] install 980 set_privilege: 1 =
set_privilege ((token 758) S
eChangeNotifyPrivilege, 1)
  198   53011 [main] install 980 dtable::extend: size
32, fds 0x61820DF0
  134   53145 [main] install 980 normalize_posix_path:
src /etc/passwd
  111   53256 [main] install 980 normalize_posix_path:
/etc/passwd = normalize_p
osix_path (/etc/passwd)
  153   53409 [main] install 980
mount_info::conv_to_win32_path: conv_to_win32_p
ath (/etc/passwd)
20869   74278 [main] install 980 set_flags: flags:
binary (0x2)
  121   74399 [main] install 980
mount_info::conv_to_win32_path: src_path /etc/p
asswd, dst C:\CYGWIN\etc\passwd, flags 0xA, rc 0
  214   74613 [main] install 980 symlink_info::check:
not a symlink
  112   74725 [main] install 980 symlink_info::check:
0 = symlink.check (C:\CYGW
IN\etc\passwd, 0x22E8C0) (0xA)
  152   74877 [main] install 980 path_conv::check:
this->path(C:\CYGWIN\etc\pass
wd), has_acls(1)
  274   75151 [main] install 980
etc::test_file_change: FindFirstFile succeeded
  709   75860 [main] install 980 pwdgrp::load:
/etc/passwd curr_lines 7
  116   75976 [main] install 980 pwdgrp::load:
/etc/passwd load succeeded
  164   76140 [main] install 980 normalize_posix_path:
src /etc/group
  111   76251 [main] install 980 normalize_posix_path:
/etc/group = normalize_po
six_path (/etc/group)
  144   76395 [main] install 980
mount_info::conv_to_win32_path: conv_to_win32_p
ath (/etc/group)
  157   76552 [main] install 980 set_flags: flags:
binary (0x2)
  108   76660 [main] install 980
mount_info::conv_to_win32_path: src_path /etc/g
roup, dst C:\CYGWIN\etc\group, flags 0xA, rc 0
  193   76853 [main] install 980 symlink_info::check:
not a symlink
  111   76964 [main] install 980 symlink_info::check:
0 = symlink.check (C:\CYGW
IN\etc\group, 0x22E880) (0xA)
  151   77115 [main] install 980 path_conv::check:
this->path(C:\CYGWIN\etc\grou
p), has_acls(1)
  243   77358 [main] install 980
etc::test_file_change: FindFirstFile succeeded
  531   77889 [main] install 980 pwdgrp::load:
/etc/group curr_lines 12
  112   78001 [main] install 980 pwdgrp::load:
/etc/group load succeeded
  123   78124 [main] install 980
cygheap_user::ontherange: what 2, pw 0x10011808

  139   78263 [main] install 980
cygheap_user::ontherange: HOME is already in th
e environment /home/PengFei
  356   78619 [main] install 980 sigproc_init:
process/signal handling enabled(1
)
  342   78961 [main] install 980 build_argv: argv[0] =
'install'
  108   79069 [main] install 980 build_argv: argc 1
  303   79372 [sig] install 980 wait_sig:
myself->dwProcessId 980
  135   79507 [sig] install 980 wait_sig: entering
ReadFile loop, readsig 0x720,
 myself->sendsig 0x714
  220   79727 [main] install 980 build_fh_pc: fh
0x61820F58
  150   79877 [main] install 980 open_shared: name
(null), shared 0x60020000 (wa
nted 0x60020000), h 0x70C
  168   80045 [main] install 980 _pinfo::set_ctty:
checking if /dev/tty-1 change
d
  143   80188 [main] install 980 _pinfo::set_ctty:
attached tty1073741824 sid 98
0, pid 980, tty->pgid 980, tty->sid 980
17068   97256 [main] install 980
fhandler_base::set_flags: flags 0x10002, suppli
ed_bin 0x0
  219   97475 [main] install 980
fhandler_base::set_flags: O_TEXT/O_BINARY set i
n flags 0x10000
  164   97639 [main] install 980
fhandler_base::set_flags: filemode set to binar
y
  267   97906 [main] install 980
fhandler_console::open: incremented open_fhs, n
ow 1
  150   98056 [main] install 980
fhandler_console::open: opened conin$ 0x2B, con
out$ 0x2F
  172   98228 [main] install 980
fhandler_console::output_tcsetattr: 0 = tcsetat
tr (,60020018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  242   98470 [main] install 980 build_fh_pc: fh
0x61821160
  119   98589 [main] install 980
fhandler_base::set_flags: flags 0x10002, suppli
ed_bin 0x0
  143   98732 [main] install 980
fhandler_base::set_flags: O_TEXT/O_BINARY set i
n flags 0x10000
  144   98876 [main] install 980
fhandler_base::set_flags: filemode set to binar
y
  204   99080 [main] install 980
fhandler_console::open: incremented open_fhs, n
ow 2
  144   99224 [main] install 980
fhandler_console::open: opened conin$ 0xB, cono
ut$ 0x33
  164   99388 [main] install 980
fhandler_console::output_tcsetattr: 0 = tcsetat
tr (,60020018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  247   99635 [main] install 980 build_fh_pc: fh
0x61821368
  108   99743 [main] install 980
fhandler_base::set_flags: flags 0x10002, suppli
ed_bin 0x0
  143   99886 [main] install 980
fhandler_base::set_flags: O_TEXT/O_BINARY set i
n flags 0x10000
  143  100029 [main] install 980
fhandler_base::set_flags: filemode set to binar
y
  202  100231 [main] install 980
fhandler_console::open: incremented open_fhs, n
ow 3
  142  100373 [main] install 980
fhandler_console::open: opened conin$ 0x13, con
out$ 0x37
  193  100566 [main] install 980
fhandler_console::output_tcsetattr: 0 = tcsetat
tr (,60020018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  594  101160 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (C:\CYGWIN\bin\cygiconv-2.dll, keep-rel,
no-add-slash)
  164  101324 [main] install 980 normalize_win32_path:
C:\CYGWIN\bin\cygiconv-2.
dll = normalize_win32_path
(C:\CYGWIN\bin\cygiconv-2.dll)
  159  101483 [main] install 980
mount_info::conv_to_posix_path: /usr/bin/cygico
nv-2.dll = conv_to_posix_path
(C:\CYGWIN\bin\cygiconv-2.dll)
  248  101731 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (C:\CYGWIN\bin\cygintl-3.dll, keep-rel,
no-add-slash)
  156  101887 [main] install 980 normalize_win32_path:
C:\CYGWIN\bin\cygintl-3.d
ll = normalize_win32_path
(C:\CYGWIN\bin\cygintl-3.dll)
  154  102041 [main] install 980
mount_info::conv_to_posix_path: /usr/bin/cygint
l-3.dll = conv_to_posix_path
(C:\CYGWIN\bin\cygintl-3.dll)
  199  102240 [main] install 980 dll_crt0_1:
user_data->main 0x401530
  108  102348 [main] install 980 __set_errno: void
dll_crt0_1(char*):878 val 0
  112  102460 [main] install 980 wait_for_sigthread:
wait_sig_inited 0x71C
 1411  103871 [main] install 980
fhandler_console::write: 22D210, 9
  118  103989 [main] install 980
fhandler_console::write: at 105(i) state is 0
install:   502  104491 [main] install 980
fhandler_console::write: 9 = write_con
sole (,..9)
  501  104992 [main] install 980
fhandler_console::write: 22CE00, 20
  111  105103 [main] install 980
fhandler_console::write: at 109(m) state is 0
missing file operand  189  105292 [main] install 980
fhandler_console::write: 20
 = write_console (,..20)
  366  105658 [main] install 980
fhandler_console::write: 6110AFF7, 1
  110  105768 [main] install 980
fhandler_console::write: at 10(0x20) state is 0


  254  106022 [main] install 980
fhandler_console::write: 1 = write_console (,..
1)
  561  106583 [main] install 980
fhandler_console::write: 22D200, 43
  108  106691 [main] install 980
fhandler_console::write: at 84(T) state is 0
Try `install --help' for more information.
  235  106926 [main] install 980
fhandler_console::write: 43 = write_console (,.
.43)
  417  107343 [main] install 980 close: close (1)
  130  107473 [main] install 980
fhandler_console::close: decremented open_fhs,
now 2
  155  107628 [main] install 980 close: 0 = close (1)
  363  107991 [main] install 980 close: close (0)
  128  108119 [main] install 980
fhandler_console::close: decremented open_fhs,
now 1
  143  108262 [main] install 980 close: 0 = close (0)
  414  108676 [main] install 980 close: close (2)
  244  108920 [main] install 980
fhandler_console::close: decremented open_fhs,
now 0
  149  109069 [main] install 980 close: 0 = close (2)
  258  109327 [main] install 980 do_exit: do_exit
(256), exit_state 0
  111  109438 [main] install 980 void: 0x0 = signal
(20, 0x1)
  108  109546 [main] install 980 void: 0x0 = signal
(1, 0x1)
  114  109660 [main] install 980 void: 0x0 = signal
(2, 0x1)
  106  109766 [main] install 980 void: 0x0 = signal
(3, 0x1)
  138  109904 [main] install 980 sigproc_terminate:
entering
  157  110061 [sig] install 980 wait_sig: done
  146  110207 [sig] install 980 _cygtls::remove: wait
0x0
  187  110394 [main] install 980 proc_terminate:
nprocs 0
  110  110504 [main] install 980 proc_terminate:
leaving
  207  110711 [main] install 980 sigproc_terminate:
sigproc handling not active
  114  110825 [main] install 980 proc_terminate:
nprocs 0
  200  111025 [main] install 980 proc_terminate:
leaving
  117  111142 [main] install 980 __to_clock_t:
dwHighDateTime 0, dwLowDateTime 3
00432
  143  111285 [main] install 980 __to_clock_t: total
00000000 0000001E
  110  111395 [main] install 980 __to_clock_t:
dwHighDateTime 0, dwLowDateTime 2
00288
  140  111535 [main] install 980 __to_clock_t: total
00000000 00000014
 1171  112706 [main] install 980
pinfo::maybe_set_exit_code_from_windows: pid 98
0, exit value - old 0x80000100, windows 0xDEADBEEF,
cygwin 0x80000100

end here. I look forward to your reply!


--- Larry Hall
<lh-no-personal-replies-please@cygwin.com> wrote:

> At 11:15 PM 7/3/2005, you wrote:
> >Hi, Larry,
> >
> >So, you suggest I use cygwin 2.05b-17 that I am
> using
> >now. I don't have other memory cosuming process
> runing
> >while I use Cygwin, but since I use correct Cygwin
> >version, how can I solve the problem. I still need
> >your help.
> 
> 
> Well so far, everything that you've described and
> provided as info sounds
> fine.  You'll need to provide a short simple example
> that allows others 
> to try what you're doing so we can see if anyone can
> reproduce the problem
> you're having.  You could also try running the
> command that causes the 
> problem you report under 'strace.exe' and see if the
> output from it helps
> localize the area where you're having the problem. 
> The "Resource temporarily
> unavailable" message coincides with EAGAIN (error #
> 11) so you could check 
> the resulting trace to see if this error code
> appears and where and when.
> 
> --
> Larry Hall                             
> http://www.rfk.com
> RFK Partners, Inc.                      (508)
> 893-9779 - RFK Office
> 838 Washington Street                   (508)
> 893-9889 - FAX
> Holliston, MA 01746                     
> 
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for    NS2.28 and NS2.27
  2005-07-04 17:32             ` Larry Hall
                                 ` (2 preceding siblings ...)
  2005-07-05  6:47               ` Question NS
@ 2005-07-05  6:47               ` Question NS
  3 siblings, 0 replies; 25+ messages in thread
From: Question NS @ 2005-07-05  6:47 UTC (permalink / raw)
  To: Cygwin List, ns-users

Hi, Larry,

I reinstall NS2.28 again, it stopped at a different
place this time, that is, not at TK installation but
at TCLCL installation,
============================================================
* Build Tclcl-1.16
============================================================
No .configure file found in current directory
Continuing with default options...
checking build system type... i686-pc-cygwin
checking host system type... i686-pc-cygwin
checking target system type... i686-pc-cygwin
checking for gcc... gcc
checking for C compiler default output... a.exe
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... .exe
checking for suffix of object files... o
checking whether we are using the GNU C compiler...
yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none
needed
checking for g++... g++
checking whether we are using the GNU C++ compiler...
yes
checking whether g++ accepts -g... ./configure: line
2538: /usr/bin/sed: Resourc
e temporarily unavailable
./configure: line 2542: /usr/bin/rm: Resource
temporarily unavailable
no
./configure: line 2570: /usr/bin/cat: Resource
temporarily unavailable
./configure: fork: Resource temporarily unavailable
./configure: fork: Resource temporarily unavailable
./configure: line 2574: /usr/bin/cat: Resource
temporarily unavailable
./configure: fork: Resource temporarily unavailable
./configure: fork: Resource temporarily unavailable
tclcl-1.16 configuration failed! Exiting ...
Please check
http://www.isi.edu/nsnam/ns/ns-problems.html
for common problems and bug fixes.
--------------------------------------------------
Then, I run strace.exe again, got the following line,
You help is appreciated!

  152   39317 [main] install 980 normalize_win32_path:
c:\WINDOWS = normalize_wi
n32_path (c:\WINDOWS)
  155   39472 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/WIN
DOWS = conv_to_posix_path (c:\WINDOWS)
  152   39624 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (c:\WINDOWS\System32\Wbem, keep-rel, no-add-slash)
  156   39780 [main] install 980 normalize_win32_path:
c:\WINDOWS\System32\Wbem
= normalize_win32_path (c:\WINDOWS\System32\Wbem)
  155   39935 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/WIN
DOWS/System32/Wbem = conv_to_posix_path
(c:\WINDOWS\System32\Wbem)
  161   40096 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (c:\Program Files\ATI Technologies\ATI Control
Panel, keep-rel, no-add-slash
)
  189   40285 [main] install 980 normalize_win32_path:
c:\Program Files\ATI Tech
nologies\ATI Control Panel = normalize_win32_path
(c:\Program Files\ATI Technolo
gies\ATI Control Panel)
  390   40675 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/Pro
gram Files/ATI Technologies/ATI Control Panel =
conv_to_posix_path (c:\Program F
iles\ATI Technologies\ATI Control Panel)
  202   40877 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (c:\Program Files\PC-Doctor for Windows\services,
keep-rel, no-add-slash)
  162   41039 [main] install 980 normalize_win32_path:
c:\Program Files\PC-Docto
r for Windows\services = normalize_win32_path
(c:\Program Files\PC-Doctor for Wi
ndows\services)
  192   41231 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/Pro
gram Files/PC-Doctor for Windows/services =
conv_to_posix_path (c:\Program Files
\PC-Doctor for Windows\services)
  204   41435 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (c:\matlab\bin\win32, keep-rel, no-add-slash)
  153   41588 [main] install 980 normalize_win32_path:
c:\matlab\bin\win32 = nor
malize_win32_path (c:\matlab\bin\win32)
  154   41742 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/mat
lab/bin/win32 = conv_to_posix_path
(c:\matlab\bin\win32)
  158   41900 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (c:\Program Files\SSH Communications Security\SSH
Secure Shell, keep-rel, no
-add-slash)
  189   42089 [main] install 980 normalize_win32_path:
c:\Program Files\SSH Comm
unications Security\SSH Secure Shell =
normalize_win32_path (c:\Program Files\SS
H Communications Security\SSH Secure Shell)
  199   42288 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/Pro
gram Files/SSH Communications Security/SSH Secure
Shell = conv_to_posix_path (c:
\Program Files\SSH Communications Security\SSH Secure
Shell)
  505   42793 [main] install 980 win_env::add_cache:
posix /usr/local/bin:/usr/b
in:/usr/bin:/usr/X11R6/bin:/cygdrive/c/PROGRAM
FILES/THINKPAD/UTILITIES:/cygdriv
e/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:/cygd
rive/c/Program Files/ATI Technologies/ATI Control
Panel:/cygdrive/c/Program File
s/PC-Doctor for
Windows/services:/cygdrive/c/matlab/bin/win32:/cygdrive/c/Progra
m Files/SSH Communications Security/SSH Secure Shell
  336   43129 [main] install 980 win_env::add_cache:
native PATH=C:\CYGWIN\usr\l
ocal\bin;C:\CYGWIN\bin;C:\CYGWIN\bin;C:\CYGWIN\usr\X11R6\bin;c:\PROGRAM
FILES\TH
INKPAD\UTILITIES;c:\WINDOWS\system32;c:\WINDOWS;c:\WINDOWS\System32\Wbem;c:\Prog
ram Files\ATI Technologies\ATI Control
Panel;c:\Program Files\PC-Doctor for Wind
ows\services;c:\matlab\bin\win32;c:\Program Files\SSH
Communications Security\SS
H Secure Shell
  508   43637 [main] install 980 posify: env var
converted to PATH=/usr/local/bi
n:/usr/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/PROGRAM
FILES/THINKPAD/UTILITIES:
/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wb
em:/cygdrive/c/Program Files/ATI Technologies/ATI
Control Panel:/cygdrive/c/Prog
ram Files/PC-Doctor for
Windows/services:/cygdrive/c/matlab/bin/win32:/cygdrive/
c/Program Files/SSH Communications Security/SSH Secure
Shell
  542   44179 [main] install 980 environ_init:
0x10010800: PATH=/usr/local/bin:/
usr/bin:/usr/bin:/usr/X11R6/bin:/cygdrive/c/PROGRAM
FILES/THINKPAD/UTILITIES:/cy
gdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/System32/Wbem:
/cygdrive/c/Program Files/ATI Technologies/ATI Control
Panel:/cygdrive/c/Program
 Files/PC-Doctor for
Windows/services:/cygdrive/c/matlab/bin/win32:/cygdrive/c/P
rogram Files/SSH Communications Security/SSH Secure
Shell
  385   44564 [main] install 980 environ_init:
0x10010698: PATHEXT=.COM;.EXE;.BA
T;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
  194   44758 [main] install 980 environ_init:
0x100106D8: PKG_CONFIG_PATH=/usr/
X11R6/lib/pkgconfig
  189   44947 [main] install 980 environ_init:
0x10010708: PRINTER=Acrobat Disti
ller
  183   45130 [main] install 980 environ_init:
0x10010728: PROCESSOR_ARCHITECTUR
E=x86
  185   45315 [main] install 980 environ_init:
0x10010748: PROCESSOR_IDENTIFIER=
x86 Family 6 Model 9 Stepping 5, GenuineIntel
  201   45516 [main] install 980 environ_init:
0x10010790: PROCESSOR_LEVEL=6
  154   45670 [main] install 980 environ_init:
0x100107A8: PROCESSOR_REVISION=09
05
  184   45854 [main] install 980 environ_init:
0x100107C8: PROGRAMFILES=C:\Progr
am Files
  184   46038 [main] install 980 environ_init:
0x100107F0: PROMPT=$P$G
  152   46190 [main] install 980 environ_init:
0x10010F30: PS1=\[\e]0;\w\a\]\n\[
\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$
  355   46545 [main] install 980 environ_init:
0x10010F78: PWD=/home/PengFei/ns-
allinone-2.28
  187   46732 [main] install 980 environ_init:
0x10010FA0: SESSIONNAME=Console
  154   46886 [main] install 980 environ_init:
0x10010FB8: SHLVL=1
  149   47035 [main] install 980 environ_init:
0x10010FC8: SYSTEMDRIVE=C:
  158   47193 [main] install 980 environ_init:
0x10010FE0: SYSTEMROOT=C:\WINDOWS

  208   47401 [main] install 980 getwinenv: can't set
native for TEMP= since no
environ yet
  188   47589 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (C:\DOCUME~1\PengFei\LOCALS~1\Temp, no-keep-rel,
no-add-slash)
  157   47746 [main] install 980 normalize_win32_path:
C:\DOCUME~1\PengFei\LOCAL
S~1\Temp = normalize_win32_path
(C:\DOCUME~1\PengFei\LOCALS~1\Temp)
  160   47906 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/DOC
UME~1/PengFei/LOCALS~1/Temp = conv_to_posix_path
(C:\DOCUME~1\PengFei\LOCALS~1\T
emp)
  270   48176 [main] install 980 win_env::add_cache:
posix /cygdrive/c/DOCUME~1/
PengFei/LOCALS~1/Temp
  142   48318 [main] install 980 win_env::add_cache:
native TEMP=C:\DOCUME~1\Pen
gFei\LOCALS~1\Temp
  150   48468 [main] install 980 posify: env var
converted to TEMP=/cygdrive/c/D
OCUME~1/PengFei/LOCALS~1/Temp
  187   48655 [main] install 980 environ_init:
0x10011030: TEMP=/cygdrive/c/DOCU
ME~1/PengFei/LOCALS~1/Temp
  189   48844 [main] install 980 environ_init:
0x100111A0: TERM=cygwin
  152   48996 [main] install 980 getwinenv: can't set
native for TMP= since no e
nviron yet
  433   49429 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (C:\DOCUME~1\PengFei\LOCALS~1\Temp, no-keep-rel,
no-add-slash)
  157   49586 [main] install 980 normalize_win32_path:
C:\DOCUME~1\PengFei\LOCAL
S~1\Temp = normalize_win32_path
(C:\DOCUME~1\PengFei\LOCALS~1\Temp)
  159   49745 [main] install 980
mount_info::conv_to_posix_path: /cygdrive/c/DOC
UME~1/PengFei/LOCALS~1/Temp = conv_to_posix_path
(C:\DOCUME~1\PengFei\LOCALS~1\T
emp)
  270   50015 [main] install 980 win_env::add_cache:
posix /cygdrive/c/DOCUME~1/
PengFei/LOCALS~1/Temp
  142   50157 [main] install 980 win_env::add_cache:
native TMP=C:\DOCUME~1\Peng
Fei\LOCALS~1\Temp
  142   50299 [main] install 980 posify: env var
converted to TMP=/cygdrive/c/DO
CUME~1/PengFei/LOCALS~1/Temp
  213   50512 [main] install 980 environ_init:
0x100111B0: TMP=/cygdrive/c/DOCUM
E~1/PengFei/LOCALS~1/Temp
  188   50700 [main] install 980 environ_init:
0x10011320: USER=PengFei
  150   50850 [main] install 980 environ_init:
0x10011338: USERDOMAIN=IBM-F625B2
2F2D9
  181   51031 [main] install 980 environ_init:
0x10011358: USERNAME=PengFei
  152   51183 [main] install 980 environ_init:
0x10011370: USERPROFILE=C:\Docume
nts and Settings\PengFei
  192   51375 [main] install 980 environ_init:
0x100113A8: WINDIR=C:\WINDOWS
  151   51526 [main] install 980 environ_init:
0x100113C0: _=/usr/bin/strace.exe

  143   51669 [main] install 980 pinfo_init: Set nice
to 0
  106   51775 [main] install 980 pinfo_init: pid 980,
pgid 980
  826   52601 [main] install 980 set_privilege: 0 =
set_privilege ((token 758) S
eRestorePrivilege, 1)
  212   52813 [main] install 980 set_privilege: 1 =
set_privilege ((token 758) S
eChangeNotifyPrivilege, 1)
  198   53011 [main] install 980 dtable::extend: size
32, fds 0x61820DF0
  134   53145 [main] install 980 normalize_posix_path:
src /etc/passwd
  111   53256 [main] install 980 normalize_posix_path:
/etc/passwd = normalize_p
osix_path (/etc/passwd)
  153   53409 [main] install 980
mount_info::conv_to_win32_path: conv_to_win32_p
ath (/etc/passwd)
20869   74278 [main] install 980 set_flags: flags:
binary (0x2)
  121   74399 [main] install 980
mount_info::conv_to_win32_path: src_path /etc/p
asswd, dst C:\CYGWIN\etc\passwd, flags 0xA, rc 0
  214   74613 [main] install 980 symlink_info::check:
not a symlink
  112   74725 [main] install 980 symlink_info::check:
0 = symlink.check (C:\CYGW
IN\etc\passwd, 0x22E8C0) (0xA)
  152   74877 [main] install 980 path_conv::check:
this->path(C:\CYGWIN\etc\pass
wd), has_acls(1)
  274   75151 [main] install 980
etc::test_file_change: FindFirstFile succeeded
  709   75860 [main] install 980 pwdgrp::load:
/etc/passwd curr_lines 7
  116   75976 [main] install 980 pwdgrp::load:
/etc/passwd load succeeded
  164   76140 [main] install 980 normalize_posix_path:
src /etc/group
  111   76251 [main] install 980 normalize_posix_path:
/etc/group = normalize_po
six_path (/etc/group)
  144   76395 [main] install 980
mount_info::conv_to_win32_path: conv_to_win32_p
ath (/etc/group)
  157   76552 [main] install 980 set_flags: flags:
binary (0x2)
  108   76660 [main] install 980
mount_info::conv_to_win32_path: src_path /etc/g
roup, dst C:\CYGWIN\etc\group, flags 0xA, rc 0
  193   76853 [main] install 980 symlink_info::check:
not a symlink
  111   76964 [main] install 980 symlink_info::check:
0 = symlink.check (C:\CYGW
IN\etc\group, 0x22E880) (0xA)
  151   77115 [main] install 980 path_conv::check:
this->path(C:\CYGWIN\etc\grou
p), has_acls(1)
  243   77358 [main] install 980
etc::test_file_change: FindFirstFile succeeded
  531   77889 [main] install 980 pwdgrp::load:
/etc/group curr_lines 12
  112   78001 [main] install 980 pwdgrp::load:
/etc/group load succeeded
  123   78124 [main] install 980
cygheap_user::ontherange: what 2, pw 0x10011808

  139   78263 [main] install 980
cygheap_user::ontherange: HOME is already in th
e environment /home/PengFei
  356   78619 [main] install 980 sigproc_init:
process/signal handling enabled(1
)
  342   78961 [main] install 980 build_argv: argv[0] =
'install'
  108   79069 [main] install 980 build_argv: argc 1
  303   79372 [sig] install 980 wait_sig:
myself->dwProcessId 980
  135   79507 [sig] install 980 wait_sig: entering
ReadFile loop, readsig 0x720,
 myself->sendsig 0x714
  220   79727 [main] install 980 build_fh_pc: fh
0x61820F58
  150   79877 [main] install 980 open_shared: name
(null), shared 0x60020000 (wa
nted 0x60020000), h 0x70C
  168   80045 [main] install 980 _pinfo::set_ctty:
checking if /dev/tty-1 change
d
  143   80188 [main] install 980 _pinfo::set_ctty:
attached tty1073741824 sid 98
0, pid 980, tty->pgid 980, tty->sid 980
17068   97256 [main] install 980
fhandler_base::set_flags: flags 0x10002, suppli
ed_bin 0x0
  219   97475 [main] install 980
fhandler_base::set_flags: O_TEXT/O_BINARY set i
n flags 0x10000
  164   97639 [main] install 980
fhandler_base::set_flags: filemode set to binar
y
  267   97906 [main] install 980
fhandler_console::open: incremented open_fhs, n
ow 1
  150   98056 [main] install 980
fhandler_console::open: opened conin$ 0x2B, con
out$ 0x2F
  172   98228 [main] install 980
fhandler_console::output_tcsetattr: 0 = tcsetat
tr (,60020018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  242   98470 [main] install 980 build_fh_pc: fh
0x61821160
  119   98589 [main] install 980
fhandler_base::set_flags: flags 0x10002, suppli
ed_bin 0x0
  143   98732 [main] install 980
fhandler_base::set_flags: O_TEXT/O_BINARY set i
n flags 0x10000
  144   98876 [main] install 980
fhandler_base::set_flags: filemode set to binar
y
  204   99080 [main] install 980
fhandler_console::open: incremented open_fhs, n
ow 2
  144   99224 [main] install 980
fhandler_console::open: opened conin$ 0xB, cono
ut$ 0x33
  164   99388 [main] install 980
fhandler_console::output_tcsetattr: 0 = tcsetat
tr (,60020018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  247   99635 [main] install 980 build_fh_pc: fh
0x61821368
  108   99743 [main] install 980
fhandler_base::set_flags: flags 0x10002, suppli
ed_bin 0x0
  143   99886 [main] install 980
fhandler_base::set_flags: O_TEXT/O_BINARY set i
n flags 0x10000
  143  100029 [main] install 980
fhandler_base::set_flags: filemode set to binar
y
  202  100231 [main] install 980
fhandler_console::open: incremented open_fhs, n
ow 3
  142  100373 [main] install 980
fhandler_console::open: opened conin$ 0x13, con
out$ 0x37
  193  100566 [main] install 980
fhandler_console::output_tcsetattr: 0 = tcsetat
tr (,60020018) (ENABLE FLAGS 3) (lflag 107 oflag 9)
  594  101160 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (C:\CYGWIN\bin\cygiconv-2.dll, keep-rel,
no-add-slash)
  164  101324 [main] install 980 normalize_win32_path:
C:\CYGWIN\bin\cygiconv-2.
dll = normalize_win32_path
(C:\CYGWIN\bin\cygiconv-2.dll)
  159  101483 [main] install 980
mount_info::conv_to_posix_path: /usr/bin/cygico
nv-2.dll = conv_to_posix_path
(C:\CYGWIN\bin\cygiconv-2.dll)
  248  101731 [main] install 980
mount_info::conv_to_posix_path: conv_to_posix_p
ath (C:\CYGWIN\bin\cygintl-3.dll, keep-rel,
no-add-slash)
  156  101887 [main] install 980 normalize_win32_path:
C:\CYGWIN\bin\cygintl-3.d
ll = normalize_win32_path
(C:\CYGWIN\bin\cygintl-3.dll)
  154  102041 [main] install 980
mount_info::conv_to_posix_path: /usr/bin/cygint
l-3.dll = conv_to_posix_path
(C:\CYGWIN\bin\cygintl-3.dll)
  199  102240 [main] install 980 dll_crt0_1:
user_data->main 0x401530
  108  102348 [main] install 980 __set_errno: void
dll_crt0_1(char*):878 val 0
  112  102460 [main] install 980 wait_for_sigthread:
wait_sig_inited 0x71C
 1411  103871 [main] install 980
fhandler_console::write: 22D210, 9
  118  103989 [main] install 980
fhandler_console::write: at 105(i) state is 0
install:   502  104491 [main] install 980
fhandler_console::write: 9 = write_con
sole (,..9)
  501  104992 [main] install 980
fhandler_console::write: 22CE00, 20
  111  105103 [main] install 980
fhandler_console::write: at 109(m) state is 0
missing file operand  189  105292 [main] install 980
fhandler_console::write: 20
 = write_console (,..20)
  366  105658 [main] install 980
fhandler_console::write: 6110AFF7, 1
  110  105768 [main] install 980
fhandler_console::write: at 10(0x20) state is 0


  254  106022 [main] install 980
fhandler_console::write: 1 = write_console (,..
1)
  561  106583 [main] install 980
fhandler_console::write: 22D200, 43
  108  106691 [main] install 980
fhandler_console::write: at 84(T) state is 0
Try `install --help' for more information.
  235  106926 [main] install 980
fhandler_console::write: 43 = write_console (,.
.43)
  417  107343 [main] install 980 close: close (1)
  130  107473 [main] install 980
fhandler_console::close: decremented open_fhs,
now 2
  155  107628 [main] install 980 close: 0 = close (1)
  363  107991 [main] install 980 close: close (0)
  128  108119 [main] install 980
fhandler_console::close: decremented open_fhs,
now 1
  143  108262 [main] install 980 close: 0 = close (0)
  414  108676 [main] install 980 close: close (2)
  244  108920 [main] install 980
fhandler_console::close: decremented open_fhs,
now 0
  149  109069 [main] install 980 close: 0 = close (2)
  258  109327 [main] install 980 do_exit: do_exit
(256), exit_state 0
  111  109438 [main] install 980 void: 0x0 = signal
(20, 0x1)
  108  109546 [main] install 980 void: 0x0 = signal
(1, 0x1)
  114  109660 [main] install 980 void: 0x0 = signal
(2, 0x1)
  106  109766 [main] install 980 void: 0x0 = signal
(3, 0x1)
  138  109904 [main] install 980 sigproc_terminate:
entering
  157  110061 [sig] install 980 wait_sig: done
  146  110207 [sig] install 980 _cygtls::remove: wait
0x0
  187  110394 [main] install 980 proc_terminate:
nprocs 0
  110  110504 [main] install 980 proc_terminate:
leaving
  207  110711 [main] install 980 sigproc_terminate:
sigproc handling not active
  114  110825 [main] install 980 proc_terminate:
nprocs 0
  200  111025 [main] install 980 proc_terminate:
leaving
  117  111142 [main] install 980 __to_clock_t:
dwHighDateTime 0, dwLowDateTime 3
00432
  143  111285 [main] install 980 __to_clock_t: total
00000000 0000001E
  110  111395 [main] install 980 __to_clock_t:
dwHighDateTime 0, dwLowDateTime 2
00288
  140  111535 [main] install 980 __to_clock_t: total
00000000 00000014
 1171  112706 [main] install 980
pinfo::maybe_set_exit_code_from_windows: pid 98
0, exit value - old 0x80000100, windows 0xDEADBEEF,
cygwin 0x80000100

end here. I look forward to your reply!


--- Larry Hall
<lh-no-personal-replies-please@cygwin.com> wrote:

> At 11:15 PM 7/3/2005, you wrote:
> >Hi, Larry,
> >
> >So, you suggest I use cygwin 2.05b-17 that I am
> using
> >now. I don't have other memory cosuming process
> runing
> >while I use Cygwin, but since I use correct Cygwin
> >version, how can I solve the problem. I still need
> >your help.
> 
> 
> Well so far, everything that you've described and
> provided as info sounds
> fine.  You'll need to provide a short simple example
> that allows others 
> to try what you're doing so we can see if anyone can
> reproduce the problem
> you're having.  You could also try running the
> command that causes the 
> problem you report under 'strace.exe' and see if the
> output from it helps
> localize the area where you're having the problem. 
> The "Resource temporarily
> unavailable" message coincides with EAGAIN (error #
> 11) so you could check 
> the resulting trace to see if this error code
> appears and where and when.
> 
> --
> Larry Hall                             
> http://www.rfk.com
> RFK Partners, Inc.                      (508)
> 893-9779 - RFK Office
> 838 Washington Street                   (508)
> 893-9889 - FAX
> Holliston, MA 01746                     
> 
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for      NS2.28 and NS2.27
  2005-07-05  6:06               ` Question NS
@ 2005-07-06  2:55                 ` Larry Hall
  2005-07-06  6:28                   ` Question NS
  2005-07-06 23:04                   ` Question NS
  0 siblings, 2 replies; 25+ messages in thread
From: Larry Hall @ 2005-07-06  2:55 UTC (permalink / raw)
  To: Question NS, Cygwin List, ns_users

At 02:05 AM 7/5/2005, Question NS wrote:
>While I install NS2.28, it tells no gcc, but I
>actually installed gcc, and during the installation,
>it said my gcc is not a cross compile, I don't know if
>this is matter. And if it is, which gcc version shall
>I install? I ran the strace.exe command, get the
>following lines, Thank you for support. I look forward
>to your reply.


OK, it appears that I have not been very clear with my
previous response.  Let me see if I can rectify that.
I mentioned strace as one possible avenue to finding the
source of the "Resource temporarily unavailable" message
and perhaps some context.  But I intended that to be a 
hopefully helpful option for you to explore on your end 
and *perhaps* report some digested portion to the list.
There's really little value to dumping the output of 
strace into a mail message and sending it to the list,
especially with little or no context.  Also, in case we're
not connecting on what constitutes a simple, small example,
NS 2.28 does not fit that definition in my view, if you were
thinking it might.  If you can come up with an example of 
perhaps a few hundred lines of code or something similar, 
that might qualify.  But I'm probably not going to download 
the 57MB or so of source to try to see if I can reproduce 
your problem and I expect others on this list would be 
similarly reluctant.  

As I expect you're aware (since you're far more familiar with 
NS than I am, having been introduced to it by you), there is a 
zip of binaries built for Cygwin that you can download and use 
directly:

<http://www.isi.edu/nsnam/dist/binary/ns-allinone-2.28-cygwin-binaries.zip>

But, presuming you do want to build from source rather than 
use pre-built binaries, I can offer one other suggestion.  
You've related 3 different errors, in 4 separate messages 
today, that may or may not have Cygwin as the least common 
denominator.  So let me ask, do you have any virus program 
running?  If so, you may want to try disabling it and perform 
your build without it.  It could be causing you these
difficulties too.

 

--
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
838 Washington Street                   (508) 893-9889 - FAX
Holliston, MA 01746                     


--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for     NS2.28 and NS2.27
  2005-07-06  2:55                 ` Larry Hall
@ 2005-07-06  6:28                   ` Question NS
  2005-07-06 15:27                     ` Larry Hall
  2005-07-06 23:04                   ` Question NS
  1 sibling, 1 reply; 25+ messages in thread
From: Question NS @ 2005-07-06  6:28 UTC (permalink / raw)
  To: Cygwin List

Hi, Larry,

What is virus programing, I don't think that I have
it. I run my machine same as a year ago, and cygwin
problem happens just this time. I confused. Could you
possibly download ns2.28 and install it in your
cygwin? While I use
ns-allinone-2.28-cygwin-binaries.zip, I can't gunzip
this file in cygwin. I don't know why. Hope you would
have some ideas.

Thanks
--- Larry Hall
<lh-no-personal-replies-please@cygwin.com> wrote:



__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for       NS2.28 and NS2.27
  2005-07-06  6:28                   ` Question NS
@ 2005-07-06 15:27                     ` Larry Hall
  2005-07-08  3:29                       ` Yitzchak Scott-Thoennes
  0 siblings, 1 reply; 25+ messages in thread
From: Larry Hall @ 2005-07-06 15:27 UTC (permalink / raw)
  To: Question NS, Cygwin List

At 02:28 AM 7/6/2005, you wrote:
>Hi, Larry,
>
>What is virus programing, I don't think that I have
>it. 


I said "virus program".  That would be something like
Norton AV, McAfee VirusScan, etc.


>I run my machine same as a year ago, and cygwin
>problem happens just this time. I confused. 


And I expect there are lots of things that have changed 
on your machine in that time as well.  Tracking down the 
culprit is not easy, that's true.


>Could you
>possibly download ns2.28 and install it in your
>cygwin? 


I'm not saying that I won't do this.  Just that I'm not highly
motivated to download 57MB of source and try to build it.  If I
do however, I will report my results as part of this thread.


>While I use
>ns-allinone-2.28-cygwin-binaries.zip, I can't gunzip
>this file in cygwin. I don't know why. Hope you would
>have some ideas.


zip files aren't the same format as gzip files.  You'll want to
unzip the ns binaries with WinZip or Cygwin's 'unzip' utility
(which is part of the unzip package, if you don't have this already).




--
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
838 Washington Street                   (508) 893-9889 - FAX
Holliston, MA 01746                     


--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for     NS2.28 and NS2.27
  2005-07-06  2:55                 ` Larry Hall
  2005-07-06  6:28                   ` Question NS
@ 2005-07-06 23:04                   ` Question NS
  2005-07-07  2:48                     ` Larry Hall
  1 sibling, 1 reply; 25+ messages in thread
From: Question NS @ 2005-07-06 23:04 UTC (permalink / raw)
  To: Cygwin List

Hi, Larry,

It is just easy to install (the download site is
http://www.isi.edu/nsnam/ns/ns-build.html#allinone). I
would appreciate if you would help. By the way, which
package in Cygwin can support unzip? I can't use
winzip since it can't automatically unzip the file to
the aimed directory.

Thanks

--- Larry Hall
<lh-no-personal-replies-please@cygwin.com> wrote:

> At 02:05 AM 7/5/2005, Question NS wrote:
> >While I install NS2.28, it tells no gcc, but I
> >actually installed gcc, and during the
> installation,
> >it said my gcc is not a cross compile, I don't know
> if
> >this is matter. And if it is, which gcc version
> shall
> >I install? I ran the strace.exe command, get the
> >following lines, Thank you for support. I look
> forward
> >to your reply.
> 
> 
> OK, it appears that I have not been very clear with
> my
> previous response.  Let me see if I can rectify
> that.
> I mentioned strace as one possible avenue to finding
> the
> source of the "Resource temporarily unavailable"
> message
> and perhaps some context.  But I intended that to be
> a 
> hopefully helpful option for you to explore on your
> end 
> and *perhaps* report some digested portion to the
> list.
> There's really little value to dumping the output of
> 
> strace into a mail message and sending it to the
> list,
> especially with little or no context.  Also, in case
> we're
> not connecting on what constitutes a simple, small
> example,
> NS 2.28 does not fit that definition in my view, if
> you were
> thinking it might.  If you can come up with an
> example of 
> perhaps a few hundred lines of code or something
> similar, 
> that might qualify.  But I'm probably not going to
> download 
> the 57MB or so of source to try to see if I can
> reproduce 
> your problem and I expect others on this list would
> be 
> similarly reluctant.  
> 
> As I expect you're aware (since you're far more
> familiar with 
> NS than I am, having been introduced to it by you),
> there is a 
> zip of binaries built for Cygwin that you can
> download and use 
> directly:
> 
>
<http://www.isi.edu/nsnam/dist/binary/ns-allinone-2.28-cygwin-binaries.zip>
> 
> But, presuming you do want to build from source
> rather than 
> use pre-built binaries, I can offer one other
> suggestion.  
> You've related 3 different errors, in 4 separate
> messages 
> today, that may or may not have Cygwin as the least
> common 
> denominator.  So let me ask, do you have any virus
> program 
> running?  If so, you may want to try disabling it
> and perform 
> your build without it.  It could be causing you
> these
> difficulties too.
> 
>  
> 
> --
> Larry Hall                             
> http://www.rfk.com
> RFK Partners, Inc.                      (508)
> 893-9779 - RFK Office
> 838 Washington Street                   (508)
> 893-9889 - FAX
> Holliston, MA 01746                     
> 
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for       NS2.28 and NS2.27
  2005-07-06 23:04                   ` Question NS
@ 2005-07-07  2:48                     ` Larry Hall
  2005-07-08  7:12                       ` Question NS
  0 siblings, 1 reply; 25+ messages in thread
From: Larry Hall @ 2005-07-07  2:48 UTC (permalink / raw)
  To: Question NS, Cygwin List

At 07:04 PM 7/6/2005, you wrote:
>Hi, Larry,
>
>It is just easy to install (the download site is
>http://www.isi.edu/nsnam/ns/ns-build.html#allinone). I
>would appreciate if you would help. 


Yes, I understand.  Well, let's hope that if/when I find
the space to download and the time to build/install, it
goes as easy as you suggest.  Like I said, I'll report 
my results in this thread if I have any.


>By the way, which
>package in Cygwin can support unzip? I can't use
>winzip since it can't automatically unzip the file to
>the aimed directory.


I haven't checked this zip file but the comments about it made me
believe that it was a pure Windows zip file.  It mentioned something
about making sure that your Cygwin install directory was c:\cygwin.
(I would normally double check all this before posting but the site
appears to be down at my time of posting so I'm working from memory).
Anyway, if I am remembering correctly, then WinZip should work "just
fine" if your installation meets that restriction.  As for 'unzip',
I mentioned in:

  <http://cygwin.com/ml/cygwin/2005-07/msg00189.html>

this utility can be found in the Cygwin unzip package.  Re-run 'setup.exe'
and install that package if you have not already.

 

--
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
838 Washington Street                   (508) 893-9889 - FAX
Holliston, MA 01746                     


--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for       NS2.28 and NS2.27
  2005-07-06 15:27                     ` Larry Hall
@ 2005-07-08  3:29                       ` Yitzchak Scott-Thoennes
  2005-07-08 14:12                         ` Larry Hall
  0 siblings, 1 reply; 25+ messages in thread
From: Yitzchak Scott-Thoennes @ 2005-07-08  3:29 UTC (permalink / raw)
  To: cygwin

On Wed, Jul 06, 2005 at 11:27:15AM -0400, Larry Hall wrote:
> I said "virus program".  That would be something like
> Norton AV, McAfee VirusScan, etc.

Hmm, is there any way cygcheck could report on intrusive software like
virus scanners and firewalls?  Though my knowlege on the subject is
close to nil I think the latter may be doable with WSCEnumProtocols.

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for      NS2.28 and NS2.27
  2005-07-07  2:48                     ` Larry Hall
@ 2005-07-08  7:12                       ` Question NS
  2005-07-08 13:54                         ` Larry Hall
  0 siblings, 1 reply; 25+ messages in thread
From: Question NS @ 2005-07-08  7:12 UTC (permalink / raw)
  To: Cygwin List

Hi, Larry,

I use Cygwin not cygwin, is that matter? Can I rename
Cygwin as cygwin directory and install it again?

Thanks
--- Larry Hall
<lh-no-personal-replies-please@cygwin.com> wrote:

> At 07:04 PM 7/6/2005, you wrote:
> >Hi, Larry,
> >
> >It is just easy to install (the download site is
>
>http://www.isi.edu/nsnam/ns/ns-build.html#allinone).
> I
> >would appreciate if you would help. 
> 
> 
> Yes, I understand.  Well, let's hope that if/when I
> find
> the space to download and the time to build/install,
> it
> goes as easy as you suggest.  Like I said, I'll
> report 
> my results in this thread if I have any.
> 
> 
> >By the way, which
> >package in Cygwin can support unzip? I can't use
> >winzip since it can't automatically unzip the file
> to
> >the aimed directory.
> 
> 
> I haven't checked this zip file but the comments
> about it made me
> believe that it was a pure Windows zip file.  It
> mentioned something
> about making sure that your Cygwin install directory
> was c:\cygwin.
> (I would normally double check all this before
> posting but the site
> appears to be down at my time of posting so I'm
> working from memory).
> Anyway, if I am remembering correctly, then WinZip
> should work "just
> fine" if your installation meets that restriction. 
> As for 'unzip',
> I mentioned in:
> 
>  
> <http://cygwin.com/ml/cygwin/2005-07/msg00189.html>
> 
> this utility can be found in the Cygwin unzip
> package.  Re-run 'setup.exe'
> and install that package if you have not already.
> 
>  
> 
> --
> Larry Hall                             
> http://www.rfk.com
> RFK Partners, Inc.                      (508)
> 893-9779 - RFK Office
> 838 Washington Street                   (508)
> 893-9889 - FAX
> Holliston, MA 01746                     
> 
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for        NS2.28 and NS2.27
  2005-07-08  7:12                       ` Question NS
@ 2005-07-08 13:54                         ` Larry Hall
  0 siblings, 0 replies; 25+ messages in thread
From: Larry Hall @ 2005-07-08 13:54 UTC (permalink / raw)
  To: Question NS, Cygwin List

At 03:11 AM 7/8/2005, you wrote:
>Hi, Larry,
>
>I use Cygwin not cygwin, is that matter? Can I rename
>Cygwin as cygwin directory and install it again?
>
>Thanks


No, it doesn't matter.  Windows is case-preserving but not case sensitive.
What you have should work fine.




--
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
838 Washington Street                   (508) 893-9889 - FAX
Holliston, MA 01746                     


--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

* Re: Qestion about Bash Fork Resource Temporily Unavailable for         NS2.28 and NS2.27
  2005-07-08  3:29                       ` Yitzchak Scott-Thoennes
@ 2005-07-08 14:12                         ` Larry Hall
  0 siblings, 0 replies; 25+ messages in thread
From: Larry Hall @ 2005-07-08 14:12 UTC (permalink / raw)
  To: Yitzchak Scott-Thoennes, cygwin

At 11:29 PM 7/7/2005, you wrote:
>On Wed, Jul 06, 2005 at 11:27:15AM -0400, Larry Hall wrote:
>> I said "virus program".  That would be something like
>> Norton AV, McAfee VirusScan, etc.
>
>Hmm, is there any way cygcheck could report on intrusive software like
>virus scanners and firewalls?  Though my knowlege on the subject is
>close to nil I think the latter may be doable with WSCEnumProtocols.


I'm in the same boat as you but I agree.  Setup does something to detect
McAfee IIRC.  And it's certainly possible to query for services as well
as protocols, as you point out.  So I think it's just of SHTDI.



--
Larry Hall                              http://www.rfk.com
RFK Partners, Inc.                      (508) 893-9779 - RFK Office
838 Washington Street                   (508) 893-9889 - FAX
Holliston, MA 01746                     


--
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/

^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2005-07-08 14:12 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-07-01  9:27 Qestion about Bash Fork Resource Temporily Unavailable More Question NS
2005-07-01 15:51 ` Larry Hall
2005-07-01 19:07   ` Question NS
2005-07-01 20:47   ` Qestion about Bash Fork Resource Temporily Unavailable for NS2.28 and NS2.27 Question NS
2005-07-01 20:58     ` Brian Dessent
2005-07-03  3:56     ` Larry Hall
2005-07-03  3:59       ` daemon
2005-07-03  7:12       ` Question NS
2005-07-03 23:11         ` Larry Hall
2005-07-04  3:15           ` Question NS
2005-07-04 17:32             ` Larry Hall
2005-07-05  6:06               ` Question NS
2005-07-06  2:55                 ` Larry Hall
2005-07-06  6:28                   ` Question NS
2005-07-06 15:27                     ` Larry Hall
2005-07-08  3:29                       ` Yitzchak Scott-Thoennes
2005-07-08 14:12                         ` Larry Hall
2005-07-06 23:04                   ` Question NS
2005-07-07  2:48                     ` Larry Hall
2005-07-08  7:12                       ` Question NS
2005-07-08 13:54                         ` Larry Hall
2005-07-05  6:34               ` Question NS
2005-07-05  6:47               ` Question NS
2005-07-05  6:47               ` Question NS
2005-07-04  5:34           ` Yitzchak Scott-Thoennes

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).