linux-c-programming.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Running make seems to be crashing my computer.
@ 2002-05-02 21:17 Andrew Edmondson
  2002-05-02 21:30 ` Darío Mariani
       [not found] ` <20020502220737.GA16467@cam.ac.uk>
  0 siblings, 2 replies; 8+ messages in thread
From: Andrew Edmondson @ 2002-05-02 21:17 UTC (permalink / raw)
  To: linux-c-programming

Does anyone know of anything dangerous running make 3.79.1 at all? After I 
try to make some software I'm writing my PC crashes and re-boots. It's not 
the software that's the problem since I am not able to run it yet, I'm 
integrating some new changes.

Is there anything within a Makefile that could cause problems? It's 
definately running make that's the problem because I am not running anything 
else that I don't run for hours at a time during normal use. 

At the re-boot I had the message:

74 Segmentation fault
	initlog -c "fsck -T -a $fsckoptions /"

And while checking the filesystems:

bash: error loading shared libraries; Version GLIBC_2.0 not defined in file 
libc.so.6 with linktime reference.



Does anyone have any ideas?



Andrew
-- 

for x in *; do echo go on\!; sleep 1;done; echo Have a cup of tea\!

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Running make seems to be crashing my computer.
  2002-05-02 21:17 Running make seems to be crashing my computer Andrew Edmondson
@ 2002-05-02 21:30 ` Darío Mariani
  2002-05-07 20:09   ` Signal on Ctrl-C Darío Mariani
       [not found] ` <20020502220737.GA16467@cam.ac.uk>
  1 sibling, 1 reply; 8+ messages in thread
From: Darío Mariani @ 2002-05-02 21:30 UTC (permalink / raw)
  To: inbox; +Cc: linux-c-programming


Two things come to my mind:
1) An error in your installation, I cannot tell much about it, may be
others can.
2) Compiling makes the processor give it all, I saw damaged processor
that worked with small loads, but when trying to compile anything they
couldn't.

  Try compiling something that works, for instance a production kernel.
If it does not compile, definitely is one of the two points above, and
if it ends with something like "internal compiler error" I will put all
my money to point 2.

	Darío

Andrew Edmondson wrote:
> 
> Does anyone know of anything dangerous running make 3.79.1 at all? After I
> try to make some software I'm writing my PC crashes and re-boots. It's not
> the software that's the problem since I am not able to run it yet, I'm
> integrating some new changes.
> 
> Is there anything within a Makefile that could cause problems? It's
> definately running make that's the problem because I am not running anything
> else that I don't run for hours at a time during normal use.
> 
> At the re-boot I had the message:
> 
> 74 Segmentation fault
>         initlog -c "fsck -T -a $fsckoptions /"
> 
> And while checking the filesystems:
> 
> bash: error loading shared libraries; Version GLIBC_2.0 not defined in file
> libc.so.6 with linktime reference.
> 
> Does anyone have any ideas?
> 
> Andrew
> --
> 
> for x in *; do echo go on\!; sleep 1;done; echo Have a cup of tea\!
> -
> To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
-
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Signal on Ctrl-C
  2002-05-02 21:30 ` Darío Mariani
@ 2002-05-07 20:09   ` Darío Mariani
  2002-05-07 20:52     ` William N. Zanatta
  2002-05-08  1:43     ` Kurt Wall
  0 siblings, 2 replies; 8+ messages in thread
From: Darío Mariani @ 2002-05-07 20:09 UTC (permalink / raw)
  To: linux-c-programming

Hello:
  Wich is the UNIX signal emited when you press Ctrl-C on a console
application?
  Thanks for your help,

			Darío
-
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Signal on Ctrl-C
  2002-05-07 20:09   ` Signal on Ctrl-C Darío Mariani
@ 2002-05-07 20:52     ` William N. Zanatta
  2002-05-08  1:43     ` Kurt Wall
  1 sibling, 0 replies; 8+ messages in thread
From: William N. Zanatta @ 2002-05-07 20:52 UTC (permalink / raw)
  To: Darío Mariani; +Cc: linux-c-programming

Darío Mariani wrote:
> Hello:
>   Wich is the UNIX signal emited when you press Ctrl-C on a console
> application?
>   Thanks for your help,
> 
> 			Darío
> -
> To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> 


SIGINT        2        A      Interrupt from keyboard


"man 7 signal" for "THE LIST"


[]'s

william

-
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Signal on Ctrl-C
  2002-05-07 20:09   ` Signal on Ctrl-C Darío Mariani
  2002-05-07 20:52     ` William N. Zanatta
@ 2002-05-08  1:43     ` Kurt Wall
  2002-06-07 20:42       ` Network protocol Darío Mariani
  1 sibling, 1 reply; 8+ messages in thread
From: Kurt Wall @ 2002-05-08  1:43 UTC (permalink / raw)
  To: linux-c-programming

Scribbling feverishly on May 07, Darío Mariani managed to emit:
> Hello:
>   Wich is the UNIX signal emited when you press Ctrl-C on a console
> application?
>   Thanks for your help,

SIGINT.

$ man 7 signal

reveals all. See also

$ kill -l

Kurt
-- 
When does summertime come to Minnesota, you ask?  Well, last year, I
think it was a Tuesday.
-
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Running make seems to be crashing my computer.
       [not found] ` <20020502220737.GA16467@cam.ac.uk>
@ 2002-05-08 19:53   ` Andrew Edmondson
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Edmondson @ 2002-05-08 19:53 UTC (permalink / raw)
  To: linux-c-programming

On Thu, 02 May 2002, you wrote:

> My guess is filesystem corruption. Reboot to emergency mode or with
> init=/bin/bash and fsck it.
>
> Steven Smith,
> sos22@cam.ac.uk.

After a little bit of carefull looking (due to the other suggestions) I have 
found that it was the file-system. Thank you all very much for your help.

Andrew


-- 

for x in *; do echo go on\!; sleep 1;done; echo Have a cup of tea\!

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Network protocol
  2002-05-08  1:43     ` Kurt Wall
@ 2002-06-07 20:42       ` Darío Mariani
  2002-06-07 21:04         ` Darío Mariani
  0 siblings, 1 reply; 8+ messages in thread
From: Darío Mariani @ 2002-06-07 20:42 UTC (permalink / raw)
  Cc: linux-c-programming

Hello:
  I'm searching for a protocol library for communicating between
computers. I'm searching for something more powerfull and plain sockets
and not as complicated as CORBA.
  Does anyone know of anything like this?
  Thanks,

		Darío
-
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Network protocol
  2002-06-07 20:42       ` Network protocol Darío Mariani
@ 2002-06-07 21:04         ` Darío Mariani
  0 siblings, 0 replies; 8+ messages in thread
From: Darío Mariani @ 2002-06-07 21:04 UTC (permalink / raw)
  To: linux-c-programming

Hello:
  I'm searching for a protocol library for communicating between
computers. I'm searching for something more powerfull THAN plain sockets
and not as complicated as CORBA.
  Does anyone know of anything like this?
  Thanks,

                Darío

PS: Corrected a spell error from previous one.
-
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2002-06-07 21:04 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-05-02 21:17 Running make seems to be crashing my computer Andrew Edmondson
2002-05-02 21:30 ` Darío Mariani
2002-05-07 20:09   ` Signal on Ctrl-C Darío Mariani
2002-05-07 20:52     ` William N. Zanatta
2002-05-08  1:43     ` Kurt Wall
2002-06-07 20:42       ` Network protocol Darío Mariani
2002-06-07 21:04         ` Darío Mariani
     [not found] ` <20020502220737.GA16467@cam.ac.uk>
2002-05-08 19:53   ` Running make seems to be crashing my computer Andrew Edmondson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).