Re: cygwin Digest 1 Apr 2003 17:20:50 -0000 Issue 2699 -- re BIG BROTHER

2003-04-01 Thread Fred_Smith
> > Message-ID: <[EMAIL PROTECTED]> > > Date: Tue, 01 Apr 2003 11:38:15 -0500 > From: Fred Ma <[EMAIL PROTECTED]> > MIME-Version: 1.0 > To: [EMAIL PROTECTED] > S> ubject: Re: Big Brother is Real > Content-Type: text/plain; charset=us-ascii > Content-Transfer-Encoding: 7bit > > > > OH. MY. GOD

pthreads

2002-10-09 Thread Fred_Smith
ERROR in my original posting: Below wher eit says "pthread_timed_wait()" it should say "pthread_cond_timedwait(). -- Forwarded by Fred Smith/Computrition on 10/09/2002 04:19 PM --- Fred Smith 10/09/2002 04:18 PM Sent by: Fred Smith To: [EMAIL

pthreads

2002-10-09 Thread Fred_Smith
Gang: I've got a body of code that is running successfully on Linux. It's mostly also working fine with Cygwin, but am having a problem in one area: It starts up several threads (pthread_create), all detached. One of them blocks on pthread_timed_wait(), the rest do not. Later on when exiting, i

re: pthreads

2002-10-10 Thread Fred_Smith
Following up on my two messages of yesterday, I've narrowed down a bit the problem I am having with pthread_cancel(), to the point where the thread I'm trying to cancel doesn't do ANYTHING but loop. No calls to any other functions at all, just an endless loop.. When I call pthread_cancel() I get

trouble using a PTY

2002-11-03 Thread Fred_Smith
I'm trying to run some very simple code that uses ptys. The code is from W. Richard Stevens APUE book. The only change is the printf you see below. In this routine: int ptym_open(char *pts_name) { int fdm; char*ptr1, *ptr2; strcpy(pts_name, "/dev/ptyXY");

Re: trouble using a PTY

2002-11-03 Thread Fred_Smith
Egor: Thanks for the info! Fred egor duda <[EMAIL PROTECTED]> on 11/03/2002 09:47:53 AM Please respond to egor duda <[EMAIL PROTECTED]> To: Fred Smith/Computrition cc: [EMAIL PROTECTED] Subject: Re: trouble using a PTY Hi! Sunday, 03 November, 2002 [EMAIL PROTECTED] [EMAIL PROTECTE

Backwards typeahead

2002-11-05 Thread Fred_Smith
>On Tue, Nov 05, 2002 at 11:55:52AM -0500, Steve Chapel wrote: >>Christopher Faylor wrote: >>>On Tue, Nov 05, 2002 at 10:25:58AM -0500, Steve Chapel wrote: >>> So again I ask for information on how this cygwin problem can be solved. It makes typeahead completely useless for me. >>> >>>What

pthreads compile/link flags

2002-11-12 Thread Fred_Smith
I don't see this in the docs (forgive me if I"m blind) What compile and/or link options should be used with Cygwin for pthreads apps? I know on LInux it is "-pthread", other systems have other options, but what are the correct settings for Cygwin? Thanks! Fred -- Unsubscribe info: h

repost: correct compile/link flags for PTHREADS

2002-11-14 Thread Fred_Smith
I don't see this in the docs (forgive me if I"m blind) (I've looked yet again, and searched the archives too) What compile and/or link options should be used with Cygwin for pthreads apps? I know on LInux it is "-pthread", other systems have other options, but what are the correct settings fo

suitable cygwin subset question

2002-12-05 Thread Fred_Smith
I'm developing a multithread app on cygwin (well, porting from LInux, actually), which uses Oracle OCI for client services. So far it's running well on my development box. Just tried an experiment, in which I took my program and its necessary data files, and the cygwin DLLs reported by cygcheck (c

Re: suitable cygwin subset question

2002-12-06 Thread Fred_Smith
>> So this all is a prelude to the question: What's the minimum subset of >> stuff I need to move, and is it necessary to actually run a cygwin >> installer (for registry setups, maybe???) or will simply putting >> files in the "right place" work? > >Without registry entries, Cygwin won't know wher

cross-compiler

2002-12-10 Thread Fred_Smith
Pardon me if maybe this belong on developer instead I've seen mention of a cygwin-targeted cross-development toolset (for LInux, perhaps), but so far have no clue where/how one obtains it. Is there a package available somewhere, or does one need to download gcc et al (and I don't know how

Re: cygwin Digest 2 Jan 2003 23:32:57 -0000 Issue 2457

2003-01-03 Thread Fred_Smith
> > Message-ID: <[EMAIL PROTECTED]> > Date: Thu, 2 Jan 2003 08:52:07 -0800 (PST) > From: Robert Bercik <[EMAIL PROTECTED]> > Subject: lockf() or flock() support? > To: [EMAIL PROTECTED] > MIME-Version: 1.0 > Content-Type: text/plain; charset=us-ascii > > > I'm porting an application that uses

Subject: Re: Setup.exe

2003-01-08 Thread Fred_Smith
> > Message-ID: <[EMAIL PROTECTED]> > Date: Wed, 8 Jan 2003 17:24:22 - (GMT) > Subject: Re: Setup.exe > From: "Dave Hooper" <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > MIME-Version: 1.0 > Content-Type: text/plain;charset=iso-8859-1 > > > >>> Isn't that kinda up to the user. When you fin

Re: bash shell

2003-02-14 Thread Fred_Smith
[EMAIL PROTECTED] on 02/14/2003 03:14:39 PM To: [EMAIL PROTECTED] cc:(bcc: Fred Smith/Computrition) Subject: cygwin Digest 14 Feb 2003 20:14:39 - Issue 2563 > > It has recently come to my attention that some people think the Cygwin > > list is exceptionally unfriendly to the uni

Re: EOF error

2003-12-04 Thread Fred_Smith
"Kooser, Ara S" <[EMAIL PROTECTED]> said: >PROGRAM TEMP > * > *This program converts Celsius to Farenheit * > ** > *The variable used is: * > * DEGC : degress celsius

Changing jobs

2004-03-31 Thread Fred_Smith
> > Date: Wed, 31 Mar 2004 13:08:30 -0500 > From: Christopher Faylor <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Changing jobs > Message-ID: <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > Mime-Version: 1.0 > Content-Type: text/plain; charset=us-ascii > > > I just wanted to send

Pthread problems -- [was: Re: newer bintuils]

2002-09-27 Thread Fred_Smith
> --- Alan Hourihane <[EMAIL PROTECTED]> wrote: > > "Alan Hourihane" wrote in message > > amnb7e$7k5$[EMAIL PROTECTED]">news:amnb7e$7k5$[EMAIL PROTECTED]... > > > Anyone know when the new binutils will be out with Egor's > > > fixes for auto-import of arrays ? > > > > Anyone know the expected ETA

Re: What is the minimum needed to run gtar?

2003-08-14 Thread Fred_Smith
Message-ID: <[EMAIL PROTECTED]> From: "Biederman, Steve" <[EMAIL PROTECTED]> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Subject: What is the minimum needed to run gtar? Date: Tue, 5 Aug 2003 17:04:53 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Steve Biederman