Mercurial > emacs
annotate src/sysselect.h @ 110645:7d7a02c19d8c
Fix int/EMACS_INT use in xdisp.c and print.c.
print.c (print_object): Fix format string and argument types for
printing a Lisp_Misc_Marker.
xdisp.c (pos_visible_p, c_string_pos, number_of_chars)
(load_overlay_strings, get_overlay_strings_1)
(get_overlay_strings, forward_to_next_line_start)
(back_to_previous_visible_line_start, reseat, reseat_to_string)
(get_next_display_element, next_element_from_string)
(next_element_from_c_string, next_element_from_buffer)
(move_it_vertically_backward, move_it_by_lines, add_to_log)
(message_dolog, message_log_check_duplicate, message2_nolog)
(message3, message3_nolog, vmessage, set_message, set_message_1)
(hscroll_window_tree, text_outside_line_unchanged_p)
(set_cursor_from_row, set_vertical_scroll_bar, redisplay_window)
(find_last_unchanged_at_beg_row)
(find_first_unchanged_at_end_row, row_containing_pos)
(trailing_whitespace_p, display_mode_element, decode_mode_spec)
(display_count_lines, x_produce_glyphs, note_mouse_highlight): Use
EMACS_INT for buffer and string positions.
dispextern.h (struct it) <string_nchars>: Declare EMACS_INT.
(row_containing_pos): Adjust prototype.
lisp.h (pos_visible_p, message2, message2_nolog, message3)
(message2_nolog, set_message): Adjust prototypes.
| author | Eli Zaretskii <eliz@gnu.org> |
|---|---|
| date | Wed, 29 Sep 2010 05:06:53 -0400 |
| parents | 63671fb2a78d |
| children | 417b1e4d63cd |
| rev | line source |
|---|---|
| 10526 | 1 /* sysselect.h - System-dependent definitions for the select function. |
|
75227
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
68651
diff
changeset
|
2 Copyright (C) 1995, 2001, 2002, 2003, 2004, 2005, |
| 106815 | 3 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
| 10526 | 4 |
| 5 This file is part of GNU Emacs. | |
| 6 | |
|
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91702
diff
changeset
|
7 GNU Emacs is free software: you can redistribute it and/or modify |
| 10526 | 8 it under the terms of the GNU General Public License as published by |
|
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91702
diff
changeset
|
9 the Free Software Foundation, either version 3 of the License, or |
|
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91702
diff
changeset
|
10 (at your option) any later version. |
| 10526 | 11 |
| 12 GNU Emacs is distributed in the hope that it will be useful, | |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
|
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91702
diff
changeset
|
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 10526 | 19 |
| 62002 | 20 #ifdef HAVE_SYS_SELECT_H |
|
97266
80acedef7417
cleanup in s/darwin.h, define DARWIN_OS and use it instead of DARWIN and/or MAC_OSX; also, nsterm.m: small unrelated cleanups
Adrian Robert <Adrian.B.Robert@gmail.com>
parents:
97043
diff
changeset
|
21 #if defined (DARWIN_OS) |
|
62105
988582b0e877
[DARWIN || MAC_OSX ]: Temporarily undefine
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
62002
diff
changeset
|
22 #undef init_process |
|
988582b0e877
[DARWIN || MAC_OSX ]: Temporarily undefine
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
62002
diff
changeset
|
23 #endif |
| 10526 | 24 #include <sys/select.h> |
|
97266
80acedef7417
cleanup in s/darwin.h, define DARWIN_OS and use it instead of DARWIN and/or MAC_OSX; also, nsterm.m: small unrelated cleanups
Adrian Robert <Adrian.B.Robert@gmail.com>
parents:
97043
diff
changeset
|
25 #if defined (DARWIN_OS) |
|
62105
988582b0e877
[DARWIN || MAC_OSX ]: Temporarily undefine
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
62002
diff
changeset
|
26 #define init_process emacs_init_process |
|
988582b0e877
[DARWIN || MAC_OSX ]: Temporarily undefine
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
62002
diff
changeset
|
27 #endif |
| 10526 | 28 #endif |
| 29 | |
|
109951
63671fb2a78d
Fix the w32 build after revno 101162.
Eli Zaretskii <eliz@gnu.org>
parents:
106815
diff
changeset
|
30 /* The w32 build defines select stuff in w32.h, which is included |
|
63671fb2a78d
Fix the w32 build after revno 101162.
Eli Zaretskii <eliz@gnu.org>
parents:
106815
diff
changeset
|
31 where w32 needs it, but not where sysselect.h is included. The w32 |
|
63671fb2a78d
Fix the w32 build after revno 101162.
Eli Zaretskii <eliz@gnu.org>
parents:
106815
diff
changeset
|
32 definitions in w32.h are incompatible with the below. */ |
|
63671fb2a78d
Fix the w32 build after revno 101162.
Eli Zaretskii <eliz@gnu.org>
parents:
106815
diff
changeset
|
33 #ifndef WINDOWSNT |
| 10526 | 34 #ifdef FD_SET |
| 35 #ifdef FD_SETSIZE | |
| 36 #define MAXDESC FD_SETSIZE | |
| 37 #else | |
| 38 #define MAXDESC 64 | |
| 39 #endif | |
| 40 #define SELECT_TYPE fd_set | |
| 41 #else /* no FD_SET */ | |
| 42 #define MAXDESC 32 | |
| 43 #define SELECT_TYPE int | |
| 44 | |
| 45 /* Define the macros to access a single-int bitmap of descriptors. */ | |
| 46 #define FD_SET(n, p) (*(p) |= (1 << (n))) | |
| 47 #define FD_CLR(n, p) (*(p) &= ~(1 << (n))) | |
| 48 #define FD_ISSET(n, p) (*(p) & (1 << (n))) | |
| 49 #define FD_ZERO(p) (*(p) = 0) | |
| 50 #endif /* no FD_SET */ | |
|
109951
63671fb2a78d
Fix the w32 build after revno 101162.
Eli Zaretskii <eliz@gnu.org>
parents:
106815
diff
changeset
|
51 #endif /* not WINDOWSNT */ |
| 10526 | 52 |
|
91702
b7a5a89054dc
* configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
Dan Nicolaescu <dann@ics.uci.edu>
parents:
79759
diff
changeset
|
53 #if !defined (HAVE_SELECT) |
| 10526 | 54 #define select sys_select |
| 55 #endif | |
| 52401 | 56 |
| 57 /* arch-tag: 36d05500-8cf6-4847-8e78-6721f18c06ef | |
| 58 (do not change this comment) */ |
