]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorKim F. Storm <storm@cua.dk>
Fri, 14 Jul 2006 09:32:02 +0000 (09:32 +0000)
committerKim F. Storm <storm@cua.dk>
Fri, 14 Jul 2006 09:32:02 +0000 (09:32 +0000)
admin/ChangeLog
lisp/ChangeLog
src/ChangeLog

index 7519bfcee9003b567eacd2e3015b11de06f66bb3..c8d95c8f6680d48f3c3a561cd3aa52d80acbc70b 100644 (file)
@@ -1,3 +1,7 @@
+2006-07-14  Kim F. Storm  <storm@cua.dk>
+
+       * FOR-RELEASE (BUGS): High cpu load on windows server sockets fixed.
+
 2006-07-09  Kim F. Storm  <storm@cua.dk>
 
        * README: Use outline format.  Add FOR-RELEASE.
@@ -56,7 +60,7 @@
 
 2006-01-27  Chong Yidong  <cyd@stupidchicken.com>
 
-       * FOR-RELEASE: string allocation bugs fixed.
+       * FOR-RELEASE: String allocation bugs fixed.
 
 2005-12-13  Bill Wohler  <wohler@newt.com>
 
index 22e84ceaee77487d0092d4d19553f05bd1e79990..3bbe4862768895c6794150cae6e2c43ab3488d3b 100644 (file)
@@ -10,7 +10,7 @@
        (gdb-display-breakpoints-buffer, gdb-display-stack-buffer)
        (gdb-display-threads-buffer, gdb-display-memory-buffer)
        (gdb-display-locals-buffer): Use it.
-       
+
        * progmodes/gud.el (gud-display-line): Use gdb-display-buffer.
        Set gdb-source-window.
 
 
 2006-07-12  Nick Roberts  <nickrob@snap.net.nz>
 
-       * tumme.el (tumme-create-thumb)
-       (tumme-thumbnail-display-external, tumme-display-image)
-       (tumme-rotate-thumbnail, tumme-rotate-original)
-       (tumme-set-exif-data, tumme-get-exif-data): Use shell-command-switch.
+       * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
+       (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
+       (tumme-set-exif-data, tumme-get-exif-data): Use shell-command-switch.
 
        * thumbs.el (thumbs-call-convert): Use shell-command-switch.
 
 
 2006-07-11  Nick Roberts  <nickrob@snap.net.nz>
 
-       * tumme.el (tumme-create-thumb)
-       (tumme-thumbnail-display-external, tumme-display-image)
-       (tumme-rotate-thumbnail, tumme-rotate-original)
+       * tumme.el (tumme-create-thumb, tumme-thumbnail-display-external)
+       (tumme-display-image, tumme-rotate-thumbnail, tumme-rotate-original)
        (tumme-set-exif-data, tumme-get-exif-data): Use call-process
        instead of shell-command.
-       (tumme-create-thumbnail-buffer)
-       (tumme-create-display-image-buffer, tumme-display-thumbs)
-       (tumme-modify-mark-on-thumb-original-file, tumme-display-image)
-       (tumme-get-exif-data): Use with-current-buffer.
-       (tumme-display-properties-format)
-       (tumme-dired-insert-marked-thumbs, tumme-rotate-original)
-       (tumme-get-exif-file-name)
-       (tumme-thumbnail-set-image-description, tumme-gallery-generate):
-       Fit to 80 columns.
+       (tumme-create-thumbnail-buffer, tumme-create-display-image-buffer)
+       (tumme-display-thumbs, tumme-modify-mark-on-thumb-original-file)
+       (tumme-display-image, tumme-get-exif-data): Use with-current-buffer.
+       (tumme-display-properties-format, tumme-dired-insert-marked-thumbs)
+       (tumme-thumbnail-set-image-description, tumme-gallery-generate)
+       (tumme-rotate-original, tumme-get-exif-file-name): Fit to 80 columns.
 
 2006-07-11  Kim F. Storm  <storm@cua.dk>
 
 2006-06-25  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/rcompile.el (remote-compile): Replace ange-ftp based
-       implementation by Tramp functions.  Based on a patch published by
-       Marc Abramowitz <msabramo@gmail.com>.
+       implementation by Tramp functions.
+       Suggested by Marc Abramowitz <msabramo@gmail.com>.
 
        * net/tramp.el (tramp-unload-tramp): Provide a doc string.
 
index 8437853d887b1118f8062f1c907fc3af8f1fee64..aaa464cfd68650285af32bb1d81b5cdeda6b7c8c 100644 (file)
@@ -1,3 +1,15 @@
+2006-07-14  Kim F. Storm  <storm@cua.dk>
+
+       * w32.c: Fix high cpu load for server sockets.
+       (pfn_WSAEventSelect): New function ptr.
+       (init_winsock): Load it.
+       (sys_listen): Set FILE_LISTEN flag. Set event mask for socket's
+       char_avail event object to FD_ACCEPT.
+       (sys_accept): Check FILE_LISTEN flag.  Set event mask on new
+       socket's char_avail event object to FD_READ|FD_CLOSE.
+
+       * w32.h (FILE_LISTEN): New filedesc flag value.
+
 2006-07-13  Kim F. Storm  <storm@cua.dk>
 
        * bytecode.c (Fbyte_code): Use CAR, CDR for Bcar, Bcdr.