aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2013-08-27 12:36:28 -0700
committerPaul Eggert2013-08-27 12:36:28 -0700
commitd486344e6fd74e4769cc7b3d09a1ea87387c5a11 (patch)
treee9ff0c112e6dbec49258aabe30122b389f9b6f20 /src/ChangeLog
parentb73517d9ecf5efeea0d6cbde56730132f5e1b611 (diff)
downloademacs-d486344e6fd74e4769cc7b3d09a1ea87387c5a11.tar.gz
emacs-d486344e6fd74e4769cc7b3d09a1ea87387c5a11.zip
Simplify SELECT_TYPE-related code.
Like EMACS_TIME, this portability layer is no longer needed, since Emacs has been using fd_set as a portability layer for some time. * sysselect.h (FD_SETSIZE): Rename from MAXDESC. All uses changed. (SELECT_TYPE): Remove. All uses changed to fd_set. (fd_set) [!FD_SET]: New typedef.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 5d5a811b3c4..185619f1890 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,12 @@
12013-08-27 Paul Eggert <eggert@cs.ucla.edu> 12013-08-27 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Simplify SELECT_TYPE-related code.
4 Like EMACS_TIME, this portability layer is no longer needed, since
5 Emacs has been using fd_set as a portability layer for some time.
6 * sysselect.h (FD_SETSIZE): Rename from MAXDESC. All uses changed.
7 (SELECT_TYPE): Remove. All uses changed to fd_set.
8 (fd_set) [!FD_SET]: New typedef.
9
3 Simplify EMACS_TIME-related code. 10 Simplify EMACS_TIME-related code.
4 This portability layer is no longer needed, since Emacs has been 11 This portability layer is no longer needed, since Emacs has been
5 using struct timespec as a portability layer for some time. 12 using struct timespec as a portability layer for some time.