1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

*** empty log message ***

This commit is contained in:
Kim F. Storm 2006-07-14 15:04:08 +00:00
parent ade79051d8
commit d753d9b7ad
2 changed files with 21 additions and 1 deletions

View file

@ -1,7 +1,11 @@
2006-07-14 Kim F. Storm <storm@cua.dk>
* PROBLEMS: Emacs now requires ws2_32.dll on Windows.
2006-07-14 K,Aa(Broly L,Bu(Brentey <lorentey@elte.hu>
* HELLO: Update Hungarian sample.
2006-07-12 Michael Olson <mwolson@gnu.org>
* ERC-NEWS: Update for ERC 5.1.3.

View file

@ -1,3 +1,19 @@
2006-07-14 Kim F. Storm <storm@cua.dk>
* w32.c (pfn_WSACreateEvent, pfn_WSACloseEvent): New func ptrs.
(init_winsock): Load them. Use ws2_32.dll.
(sys_listen): Undo last change. Just set FILE_LISTEN flag.
(sys_accept): Undo last change. Instead, set child status to
STATUS_READ_ACKNOWLEDGED and reset char_avail event so next
sys_select will wakeup the reader thread.
(_sys_wait_accept): New function used by reader thread to wait for
an incoming connection on a server socket.
* w32.h (_sys_read_ahead, _sys_wait_accept): Add prototypes.
* w32proc.c (reader_thread): Use _sys_wait_accept to wait on a
server socket (FILE_LISTEN flag).
2006-07-14 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* sound.c (alsa_init): Call snd_pcm_close after successful snd_pcm_open.