Sponsored Content
Full Discussion: help me
Top Forums UNIX for Dummies Questions & Answers help me Post 7890 by devnul on Wednesday 3rd of October 2001 12:45:52 AM
Old 10-03-2001
This error means that you have not installed the Sun C-compiler.... ...

However, there is another option.. You can install the GNU c-compiler.. ;> (Of course, this means you need to modify your PATH variable and stuff so that when you type "cc" it uses the GNU c-compiler and not the one which comes with your system...)... The default Sun c-compiler is very basic and designed for building kernels (and that's really about it)...

SOme other utilities which you should install to make your system work nicely:

autoconf
automake
GNU-make
bash
bison
flex
gtar
gunzip/gzip
binutils
perl (recent version)


There are a couple of other things, but I just can't think of them right now.... But, that' s a reasonable start for development (in my not-so-humble opinion..)

- dEvNuL
 
alarm(3)						     Library Functions Manual							  alarm(3)

Name
       alarm - schedule signal after specified time

Syntax
       #include <unistd.h>

       unsigned alarm(seconds)
       unsigned seconds;

Description
       The  subroutine	causes signal SIGALRM, see to be sent to the invoking process in a number of seconds given by the argument.  Unless caught
       or ignored, the signal terminates the process.

       The requests are not stacked.  Successive calls reset the alarm clock.  If the argument is 0, any request is canceled.  Because of schedul-
       ing delays, resumption of execution of when the signal is caught may be delayed an arbitrary amount.  The longest specifiable delay time is
       100000000 seconds. Values larger than 100000000 will be silently rounded down to 100000000.

       The return value is the amount of time previously remaining in the alarm clock.

Environment
       When your program is compiled using the System V environment, rounds up any positive fraction of a second to the next second.

       When your program is compiled using the POSIX environment, takes a parameter of type unsigned, and returns a value of type unsigned.

See Also
       getitimer(2), sigpause(2), sigvec(2), signal(3), sleep(3)

																	  alarm(3)
All times are GMT -4. The time now is 11:07 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy