[racket-dev] file change notifications

2015-02-02 Thread Dan Liebgold
Hi -

I'm doing a little profiling of Racket 6.1 on windows. It seems like
cancelling a filesystem-change-evt can take many seconds, and one is
cancelled for the addon-dir directory (which defaults to my roaming
profile) during every run. I think it interacts badly with my virus checker.

Is there a way to disable this? I'm not using the addon-dir, so any
notifications shouldn't be important.

Thanks,
-- 
Dan Liebgold[dan.liebg...@gmail.com]
_
  Racket Developers list:
  http://lists.racket-lang.org/dev


Re: [racket-dev] Github repo is two commits behind

2015-02-02 Thread Vincent St-Amour
FWIW, pulling from git.racket-lang.org has been slow (i.e. ~30mins) for
some of us in the last couple of days. Something in the mirroring may be
timing out for similar reasons.

Vincent



At Mon, 2 Feb 2015 18:41:56 -0300,
Gustavo Massaccesi wrote:
 
 * openssl: recognize version 1.0.1j #8265c9 (3 days ago) -- latest
 commit in git.racket-lang
 
 * pretty-print: fix for a current inspector that sees through
 internals #8d49a9 (3 days ago)
 
 * fix reified-syntax-class-curry (missing role argument) #302986 (3
 days ago) -- Latest commit in github
 
 Gustavo
 _
   Racket Developers list:
   http://lists.racket-lang.org/dev
_
  Racket Developers list:
  http://lists.racket-lang.org/dev


[racket-dev] Github repo is two commits behind

2015-02-02 Thread Gustavo Massaccesi
* openssl: recognize version 1.0.1j #8265c9 (3 days ago) -- latest
commit in git.racket-lang

* pretty-print: fix for a current inspector that sees through
internals #8d49a9 (3 days ago)

* fix reified-syntax-class-curry (missing role argument) #302986 (3
days ago) -- Latest commit in github

Gustavo
_
  Racket Developers list:
  http://lists.racket-lang.org/dev


Re: [racket-dev] Github repo is two commits behind

2015-02-02 Thread Vincent St-Amour
I just pushed something, and now the Github mirror is up to date. The
push must have kicked the mirroring mechanism.

Vincent


At Mon, 02 Feb 2015 16:54:10 -0500,
Vincent St-Amour wrote:
 
 FWIW, pulling from git.racket-lang.org has been slow (i.e. ~30mins) for
 some of us in the last couple of days. Something in the mirroring may be
 timing out for similar reasons.
 
 Vincent
 
 
 
 At Mon, 2 Feb 2015 18:41:56 -0300,
 Gustavo Massaccesi wrote:
  
  * openssl: recognize version 1.0.1j #8265c9 (3 days ago) -- latest
  commit in git.racket-lang
  
  * pretty-print: fix for a current inspector that sees through
  internals #8d49a9 (3 days ago)
  
  * fix reified-syntax-class-curry (missing role argument) #302986 (3
  days ago) -- Latest commit in github
  
  Gustavo
  _
Racket Developers list:
http://lists.racket-lang.org/dev
_
  Racket Developers list:
  http://lists.racket-lang.org/dev


Re: [racket-dev] file change notifications

2015-02-02 Thread Matthew Flatt
It's good to know that canceling a filesystem-change event can be
expensive on Windows, in which case they probably shouldn't be used on
Windows when resolving module paths. I'll investigate more and remove
the use.

Meanwhile, there's not a good way to disable the current use in v6.1,
but the hack

  (unsafe-vector-set! (system-type 'fs-change) 2 #f)

should work to disable it.


At Mon, 2 Feb 2015 12:14:12 -0800, Dan Liebgold wrote:
 Hi -
 
 I'm doing a little profiling of Racket 6.1 on windows. It seems like
 cancelling a filesystem-change-evt can take many seconds, and one is
 cancelled for the addon-dir directory (which defaults to my roaming
 profile) during every run. I think it interacts badly with my virus checker.
 
 Is there a way to disable this? I'm not using the addon-dir, so any
 notifications shouldn't be important.
 
 Thanks,
 -- 
 Dan Liebgold[dan.liebg...@gmail.com]
 _
   Racket Developers list:
   http://lists.racket-lang.org/dev
_
  Racket Developers list:
  http://lists.racket-lang.org/dev