Port recent signal-related changes to FreeBSD.
Problem reported by Herbert J. Skuhra. * lisp.h (block_tty_out_signal, unblock_tty_out_signal): Move decls from here ... * syssignal.h: ... to here, so that lisp.h doesn't depend on signal.h.
This commit is contained in:
parent
ef9b8f2d53
commit
4e74624db1
3 changed files with 10 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
2014-03-27 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Port recent signal-related changes to FreeBSD.
|
||||
Problem reported by Herbert J. Skuhra.
|
||||
* lisp.h (block_tty_out_signal, unblock_tty_out_signal):
|
||||
Move decls from here ...
|
||||
* syssignal.h: ... to here, so that lisp.h doesn't depend on signal.h.
|
||||
|
||||
2014-03-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
|
||||
|
||||
* w32term.c (x_draw_image_glyph_string): Fix computation of height
|
||||
|
|
|
@ -4237,8 +4237,6 @@ extern void init_sigio (int);
|
|||
extern void sys_subshell (void);
|
||||
extern void sys_suspend (void);
|
||||
extern void discard_tty_input (void);
|
||||
extern void block_tty_out_signal (sigset_t *);
|
||||
extern void unblock_tty_out_signal (sigset_t const *);
|
||||
extern void init_sys_modes (struct tty_display_info *);
|
||||
extern void reset_sys_modes (struct tty_display_info *);
|
||||
extern void init_all_sys_modes (void);
|
||||
|
|
|
@ -20,6 +20,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|||
#include <signal.h>
|
||||
|
||||
extern void init_signals (bool);
|
||||
extern void block_tty_out_signal (sigset_t *);
|
||||
extern void unblock_tty_out_signal (sigset_t const *);
|
||||
|
||||
#ifdef HAVE_PTHREAD
|
||||
#include <pthread.h>
|
||||
|
|
Loading…
Add table
Reference in a new issue