Date: Sun, 10 Jan 1999 13:13:49 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: oferco cc: djgpp AT delorie DOT com Subject: Re: what is "ualarm"? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Thu, 7 Jan 1999, oferco wrote: > Is there a "ualarm" function in DJGPP ? > (a function which sequence signal sending) There's no `ualarm' in DJGPP. However, since `ualarm' is just a simplified interface to `setitimer', which *is* supported by DJGPP, you could just use `setitimer' instead. Note that `setitimer' works in the standard DOS 55-ms granularity, since the machine clock is not sped up. Also note that signal delivery in DJGPP is delayed when the program is in real mode. See the documentation of the library functiuon `signal' for more details about this.