delorie.com/archives/browse.cgi | search |
Date: | Sun, 27 Feb 2000 09:57:30 +0200 (IST) |
From: | Eli Zaretskii <eliz AT is DOT elta DOT co DOT il> |
X-Sender: | eliz AT is |
To: | Prashant TR <prashant_tr AT yahoo DOT com> |
cc: | djgpp-workers AT delorie DOT com |
Subject: | Re: SIGCONT |
In-Reply-To: | <200002250517.KAA00756@midpec.com> |
Message-ID: | <Pine.SUN.3.91.1000227095710.14604L-100000@is> |
MIME-Version: | 1.0 |
Reply-To: | djgpp-workers AT delorie DOT com |
Errors-To: | dj-admin AT delorie DOT com |
X-Mailing-List: | djgpp-workers AT delorie DOT com |
X-Unsubscribes-To: | listserv AT delorie DOT com |
On Fri, 25 Feb 2000, Prashant TR wrote: > I happened to come across a routine that uses a SIGCONT signal (in > the Shutils 2.0f beta). DJGPP doesn't have this signal. During > compilation, it gives me an error. No signal except those required by ANSI should be used unconditionally. For other signals, a portable code should do this: #include <signal.h> . . . #ifdef SIGCONT ... code that uses SIGCONT ... #endif In other words, I think this is a bug in Sh-utils. Please report that to the maintainer.
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |