2010-01-03 08:52:38 -05:00
|
|
|
/*
|
2010-12-30 15:15:55 -05:00
|
|
|
* vim:ts=4:sw=4:expandtab
|
2010-01-03 08:52:38 -05:00
|
|
|
*
|
|
|
|
* i3 - an improved dynamic tiling window manager
|
2015-04-03 20:17:56 -04:00
|
|
|
* © 2009 Michael Stapelberg and contributors (see also: LICENSE)
|
|
|
|
* © 2009 Jan-Erik Rediger
|
2010-01-03 08:52:38 -05:00
|
|
|
*
|
2011-10-25 16:19:38 -04:00
|
|
|
* sighandler.c: Interactive crash dialog upon SIGSEGV/SIGABRT/SIGFPE (offers
|
|
|
|
* to restart inplace).
|
2010-01-03 08:52:38 -05:00
|
|
|
*
|
|
|
|
*/
|
2013-12-28 21:11:50 -05:00
|
|
|
#pragma once
|
2010-01-03 08:52:38 -05:00
|
|
|
|
2010-01-03 15:53:42 -05:00
|
|
|
/**
|
2010-01-03 08:52:38 -05:00
|
|
|
* Setup signal handlers to safely handle SIGSEGV and SIGFPE
|
|
|
|
*
|
|
|
|
*/
|
2012-03-31 04:53:04 -04:00
|
|
|
void setup_signal_handler(void);
|