Mercurial > hg > xemacs-beta
view src/s/linux.h @ 1268:fffe735e63ee
[xemacs-hg @ 2003-02-07 11:50:50 by ben]
fixes for menu crashes + better preemption behavior
This contains two related changes:
(1) Fix problems with reentrant calling of lwlib and associated
crashes when selecting menu items.
(2) Improve redisplay handling of preemption. Turn on lazy lock
and hold down page-down or page-up and you'll see what I mean.
They are related because they both touch on the code that retrieves
events and handles the internal queues.
console-msw.h, event-msw.c, event-stream.c, events.h, menubar-msw.c, menubar-x.c, menubar.h: mswindows_protect_modal_loop() has been generalized to
event_stream_protect_modal_loop(), and moved to event-stream.c.
mswindows_in_modal_loop ->in_modal_loop likewise. Changes in
event-msw.c and menubar-msw.c for the new names and calling format
(use structures instead of static variables in menubar-msw.c).
Delete former in_menu_callback and use in_modal_loop in its place.
Remove emacs_mswindows_quit_check_disallowed_p(), superseded by
in_modal_loop. Use event_stream_protect_modal_loop() in
pre_activate_callback() so that we get no lwlib reentrancy.
Rearrange some of the code in event-msw.c to be grouped better.
Make mswindows_drain_windows_queue() respect in_modal_loop and
do nothing if so.
cmdloop.c, event-stream.c: Don't conditionalize on LWLIB_MENUBARS_LUCID when giving error when
in_modal_loop, and give better error.
event-Xt.c, event-gtk.c: If in_modal_loop, only retrieve process and timeout events.
Don't retrieve any X events because processing them can lead
to reentrancy in lwlib -> death.
event-stream.c: Remove unused parameter to check_event_stream_ok() and change
all callers.
lisp.h, event-stream.c: Rearrange some functions for increased clarity -- in particular,
group all the input-pending/QUIT-related stuff together, and
put right next to next-event stuff, to which it's related.
Add the concept of "HOW_MANY" -- when asking whether user input
is pending, you can ask if at least HOW_MANY events are pending,
not just if any are. Add parameter to detect_input_pending()
for this. Change recursive_sit_for from a Lisp_Object (which
could only be Qt or Qnil) to an int, like it should be.
event-Xt.c, event-gtk.c, event-xlike-inc.c: New file.
Abstract out similar code in event_{Xt/gtk}_pending_p() and write
only once, using include-file tricks. Rewrite this function to
implement HOW_MANY and only process events when not in_modal_loop.
event-msw.c: Implement HOW_MANY and only process events when not in_modal_loop.
event-tty.c: Implement HOW_MANY.
redisplay.c: Add var `max-preempts' to control maximum number of preempts.
(#### perhaps not useful) Rewrite preemption check so that,
rather than preempting when any user events are available, only
preempt when a certain number (currently 4) of them are backed up.
This effectively allows redisplay to proceed to completion in the
presence of a fast auto-repeat (usually the auto-repeating is
generated dynamically as necessary), and you get much better
display behavior with lazy-lock active.
event-unixoid.c: Comment changes.
event-stream.c: Rewrite discard-input much more simply and safely using the
drain-queue functions. I think the old version might loop
forever if called when in_modal_loop.
SEMI-UNRELATED CHANGES:
-----------------------
event-stream.c: Turn QUIT-checking back on when running the pre-idle hook so it
can be quit out of.
indent.c: Document exact functioning of `vertical-motion' better, and its
differences from GNU Emacs.
author | ben |
---|---|
date | Fri, 07 Feb 2003 11:50:54 +0000 |
parents | d46451e73f6d |
children | 142260edb7b5 |
line wrap: on
line source
/* This file is the configuration file for the GNU/Linux operating system, prior to version 1.1.56. Copyright (C) 1985, 1986, 1992, 1994 Free Software Foundation, Inc. This file is part of XEmacs. XEmacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. XEmacs is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with XEmacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Synched up with: FSF 19.31 (called, ahem ... lignux.h in FSF). */ /* This file was put together by Michael K. Johnson and Rik Faith. */ #define USG #define LINUX /* powerpc gcc 2.8.0 doesn't define __ELF__, but it is */ #if defined(__ELF__) || defined(powerpc) #define LINUX_ELF #endif /* SYSTEM_TYPE should indicate the kind of system you are using. It sets the Lisp variable system-type. */ #define SYSTEM_TYPE "linux" /* All the best software is free. */ /* define MAIL_USE_FLOCK if the mailer uses flock to interlock access to /usr/spool/mail/$USER. The alternative is that a lock file named /usr/spool/mail/$USER.lock. */ /* Both are used in Linux by different mail programs. I assume that most people are using newer mailers that have heard of flock. Change this if you need to. */ /*#define MAIL_USE_FLOCK*/ /* On POSIX systems the system calls are interruptible by signals that the user program has elected to catch. Thus the system call must be retried in these cases. To handle this without massive changes in the source code, we remap the standard system call names to names for our own functions in sysdep.c that do the system call with retries. */ #define INTERRUPTIBLE_OPEN #define INTERRUPTIBLE_CLOSE #define INTERRUPTIBLE_IO /* This is needed for dispnew.c:update_frame */ #ifndef NOT_C_CODE #include <stdio.h> /* Get the definition of _IO_STDIO_H. */ #if defined(_IO_STDIO_H) || defined(_STDIO_USES_IOSTREAM) /* new C libio names */ #define GNU_LIBRARY_PENDING_OUTPUT_COUNT(FILE) \ ((FILE)->_IO_write_ptr - (FILE)->_IO_write_base) #else /* !_IO_STDIO_H */ /* old C++ iostream names */ #define GNU_LIBRARY_PENDING_OUTPUT_COUNT(FILE) \ ((FILE)->_pptr - (FILE)->_pbase) #endif /* !_IO_STDIO_H */ #endif /* C_CODE */ /* Ask GCC where to find libgcc.a. */ #define LIB_GCC "`$(CC) $(C_SWITCH_X_SITE) -print-libgcc-file-name`" #ifndef LINUX_ELF /* Linux has crt0.o in a non-standard place */ #define START_FILES "pre-crt0.o /usr/lib/crt0.o" #else /**/ #if defined(__linux__) && defined(powerpc) /*Added by Fukui*/ #define START_FILES /*Added by Fukui*/ #else /*Added by Fukui*/ #if defined __s390x__ || defined __x86_64__ #define START_FILES "pre-crt0.o /usr/lib64/crt1.o /usr/lib64/crti.o" #else #define START_FILES "pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o" #endif #endif /*Added by Fukui*/ #endif /* This is needed for sysdep.c */ #define NO_SIOCTL_H /* don't have sioctl.h */ #define HAVE_SYS_SIGLIST #define HAVE_WAIT_HEADER #define POSIX /* affects getpagesize.h and systty.h */ /* Best not to include -lg, unless it is last on the command line */ #define LIBS_DEBUG #define LIBS_TERMCAP "-ltermcap -lcurses" /* save some space with shared libs*/ #ifndef LINUX_ELF #define LIB_STANDARD "-lc" /* avoid -lPW */ #else /*#undef LIB_GCC #define LIB_GCC*/ #if defined __s390x__ || defined __x86_64__ #define LIB_STANDARD "-lgcc -lc -lgcc /usr/lib64/crtn.o" #else #define LIB_STANDARD "-lgcc -lc -lgcc /usr/lib/crtn.o" #endif #define LINKER "$(CC) -nostdlib" #endif #ifdef TERM #define LIBS_SYSTEM "-lclient" #define C_SWITCH_SYSTEM "-I/usr/src/term" #else /* alane@wozzle.linet.org says that -lipc is not a separate library, since libc-4.4.1. So -lipc was deleted. */ #define LIBS_SYSTEM #endif #ifdef LINUX_ELF #define UNEXEC "unexelf.o" #define UNEXEC_USE_MAP_PRIVATE /* mrb - Ordinary link is simple and effective */ /* slb - Not any more ... :-( */ /* jwj - slb's comment does not seem relevant to current Linuxes */ #define ORDINARY_LINK /* I still think ORDINARY_LINK should be the default, but since slb insists, ORDINARY_LINK will stay on until we expunge the dump code. However, the user (i.e. me!) should be able to specify ORDINARY_LINK via configure --cppflags=-DORDINARY_LINK ... */ #ifdef ORDINARY_LINK #undef LIB_STANDARD #undef START_FILES #undef LIB_GCC #endif #endif /* LINUX_ELF */ #ifdef LINUX_QMAGIC #define HAVE_TEXT_START #define UNEXEC "unexsunos4.o" #define N_PAGSIZ(x) PAGE_SIZE #else /* not LINUX_QMAGIC */ #define A_TEXT_OFFSET(hdr) (N_MAGIC(hdr) == QMAGIC ? sizeof (struct exec) : 0) #define A_TEXT_SEEK(hdr) (N_TXTOFF(hdr) + A_TEXT_OFFSET(hdr)) #define ADJUST_EXEC_HEADER \ unexec_text_start = N_TXTADDR(ohdr) + A_TEXT_OFFSET(ohdr) #endif /* not LINUX_QMAGIC */ /* This is to work around mysterious gcc failures in some system versions. It is unlikely that Emacs changes will work around this problem; therefore, this should remain permanently. */ #ifndef HAVE_XRMSETDATABASE #define HAVE_XRMSETDATABASE #endif /* The regex.o routines are a part of the GNU C-library used with Linux. */ /* However, sometimes they disagree with the src/regex.h that comes with Emacs, and that can make trouble in etags.c because it gets the regex.h from Emacs and the function definitions in libc. So turn this off. */ /* XEmacs: in any case, Mule uses different regex routines. */ /* #define REGEXP_IN_LIBC */ /* XEmacs change: the standard linux libc includes regex routines in it. We have to use our own and have to avoid name conflicts. */ #define re_compile_pattern sys_re_compile_pattern #define re_search sys_re_search #define re_search_2 sys_re_search_2 #define re_match_2 sys_re_match_2 #define re_max_failures sys_re_max_failures #define re_set_syntax sys_re_set_syntax #define re_set_registers sys_re_set_registers #define re_compile_fastmap sys_re_compile_fastmap #define re_match sys_re_match #define regcomp sys_regcomp #define regexec sys_regexec #define regerror sys_regerror #define regfree sys_regfree #if 0 /* mrb - if autoconf 2 is wrong, we should fix the test */ /* XEmacs: Damon Lipparelli says that he incorrectly gets this defined on his system */ #undef GETTIMEOFDAY_ONE_ARGUMENT #endif /* 0 */ /* Use BSD process groups, but use setpgid() instead of setpgrp() to actually set a process group. */ /* XEmacs: removed setpgrp() definition because we use setpgid() when it's available, and autodetect it. */