SDL parachute deployed

When my application crash I get the SDL parachute deployed, is there
any way I can remove this and let the app give me a core dumped?.

Miguel Angel Blanch Lardin
http://come.to/arianne_rpg
http://nav.to/ariannerpg
http://arianne.go.to

When my application crash I get the SDL parachute deployed, is there
any way I can remove this and let the app give me a core dumped?.

Add the SDL_INIT_NOPARACHUTE flag to all your SDL_Init() calls.

See ya!
-Sam Lantinga, Lead Programmer, Loki Entertainment Software

MIGUEL ANGEL BLANCH LARDIN wrote:

When my application crash I get the SDL parachute deployed, is there
any way I can remove this and let the app give me a core dumped?.

Run the app in gdb.

-Maxim

Yes, you run the app in a debugger when you now that it crash, but if
it crash randomly after 4 hours running, what you do?

This way I take the core, load in the debugger and go directly to the
problem

Miguel Angel Blanch Lardin
http://come.to/arianne_rpg

Maxim Sobolev wrote:

MIGUEL ANGEL BLANCH LARDIN wrote:

When my application crash I get the SDL parachute deployed, is
there> > any way I can remove this and let the app give me a core dumped?.

Run the app in gdb.

-Maxim

Init with something like:

SDL_Init(SDL_INIT_VIDEO|SDL_INIT_NOPARACHUTE);

and it dumps core like any other application…

//Jim> ----- Original Message -----

From: x5101920@fedro.ugr.es (Miguel Angel Blanch Lardin)
To:
Sent: Saturday, April 29, 2000 15:39
Subject: Re: [SDL] Re: SDL parachute deployed

Yes, you run the app in a debugger when you now that it crash, but if
it crash randomly after 4 hours running, what you do?

This way I take the core, load in the debugger and go directly to the
problem

Miguel Angel Blanch Lardin
http://come.to/arianne_rpg

Maxim Sobolev wrote:

MIGUEL ANGEL BLANCH LARDIN wrote:

When my application crash I get the SDL parachute deployed, is
there

any way I can remove this and let the app give me a core dumped?.

Run the app in gdb.

-Maxim