X-Spam-Check-By: sourceware.org
From: "Dave Korn" <dave.korn@artimi.com>
To: <cygwin@cygwin.com>
References: <bb663b520708280627s4d203b33ue468d7a6df159c1f@mail.gmail.com>
Subject: RE: [ipc] semtimedop undeclared
Date: Tue, 28 Aug 2007 14:47:18 +0100
Message-ID: <001901c7e979$f381e780$2e08a8c0@CAM.ARTIMI.COM>
MIME-Version: 1.0
Content-Type: text/plain; 	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Mailer: Microsoft Office Outlook 11
In-Reply-To: <bb663b520708280627s4d203b33ue468d7a6df159c1f@mail.gmail.com>
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Id: <cygwin.cygwin.com>
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

On 28 August 2007 14:28, Mehdi Rabah wrote:

> Hi,
> 
> I'm trying to compile a linux project with cygwin. There is a file
> which use IPC and include all the necessary files
> 
> #include <sys/types.h>
> #include <sys/ipc.h>
> #include <sys/shm.h>
> #include <sys/sem.h>
> #include <sys/time.h>
> 
> 
> but still, I have this error at compile time:
> 
> error: `semtimedop' undeclared (first use this function)
> 
> what can I do about this ?

  Cygwin doesn't currently implement semtimedop, so your choices are 1) patch the
cygwin source and implement it in the dll 2) change your linux project to not use
it 3) implement it in your linux project as a wrapper around semop, possibly
using a SIGALARM or other timer to trigger the timeout...


    cheers,
      DaveK
-- 
Can't think of a witty .sigline today....


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

