annotate etc/ORDERS @ 58818:f8cddae7d959
* gtkutil.c: Include signal.h and syssignal.h.
(xg_get_file_name): Block and unblock __SIGRTMIN if defined.
* alloc.c: If HAVE_GTK_AND_PTHREAD, include pthread.h,
new variables main_thread and alloc_mutex,
define (UN)BLOCK_INPUT_ALLOC to use alloc_mutex to protect
emacs_blocked_* calls and only do (UN)BLOCK_INPUT in the main thread.
If not HAVE_GTK_AND_PTHREAD, (UN)BLOCK_INPUT_ALLOC is the same as
(UN)BLOCK_INPUT.
(emacs_blocked_free, emacs_blocked_malloc)
(emacs_blocked_realloc): Use (UN)BLOCK_INPUT_ALLOC.
(uninterrupt_malloc): Initialize main_thread and alloc_mutex.
(reset_malloc_hooks): New function.
* lisp.h: Declare reset_malloc_hooks.
* emacs.c (Fdump_emacs): Call reset_malloc_hooks.
* keyboard.c: Conditionally include pthread.h
(handle_async_inpu, input_available_signalt): If not in the main
thread, block signal, send signal to main thread and return.
author |
Jan Djärv <jan.h.d@swipnet.se> |
date |
Tue, 07 Dec 2004 08:25:43 +0000 |
parents |
4ba215bc5b2d |
children |
3681678d3d86 |
rev |
line source |
32916
|
1 Printed copies of the GNU Emacs Manual, the Emacs Lisp Reference
|
|
2 Manual, "Programming in Emacs Lisp: An Introduction", and other
|
|
3 materials can be ordered directly from the Free Software Foundation.
|
|
4 For more information, see the order form on the web at
|
36397
|
5 <http://www.gnu.org/order/order.html>. Your purchases will help support
|
32916
|
6 further development of Emacs and other free software programs. You
|
|
7 can also make tax-deductable donations to the Free Software Foundation,
|
|
8 a not-for-profit organization (assuming you pay US taxes) - see
|
36397
|
9 <http://www.gnu.org/help/donate.html>.
|