emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

make-network-process on w32


From: Guy Gascoigne - Piggford
Subject: make-network-process on w32
Date: Mon, 14 Feb 2005 12:04:53 -0800
User-agent: Mozilla Thunderbird 1.0 (Windows/20041206)

Can anyone confirm that make-network-process actually works on NT. I've started looking at fixing emacsclient so that it works on Windows since I made the mistake of volunteering before realising just how little time I have :)

Anyway, if I understand things correctly, I should be able to create a connection something like this:

(setq server-process
     (make-network-process
      :name "server"
      :local (vector 127 0 0 1 9999)
      :server t
      :noquery t
      :service (expand-file-name server-name server-socket-dir)
      :sentinel 'server-sentinel
      :filter 'server-process-filter
      :coding 'raw-text
      ))

This actually works fine on Linux, but on NT the CPU pegs at 100%. I'm assuming that it's broken, but wouldn't mind being proven wrong.

Guy






reply via email to

[Prev in Thread] Current Thread [Next in Thread]