Racket v6.1 released. Undefined values from uninitialized variables eliminated
blog.racket-lang.org
Racket v6.1 released. Undefined values from uninitialized variables eliminated
1–4 of 4 posts
Re: Racket v6.1 released. Undefined values from uninitialized variables eliminated
#2There is a more technical discussion about the new undefined behavior in the mailing list, when it was incorporated: http://lists.racket-lang.org/users/archive/2014-April/062148...
Re: Racket v6.1 released. Undefined values from uninitialized variables eliminated
#3[deleted]
Re: Racket v6.1 released. Undefined values from uninitialized variables eliminated
#4The new "plumber" mechanism is useful for things like flushing buffers, doing clean disconnects from network services, committing or rolling-back transactions, and releasing kernel resources.
For example, you might be using a buffered TCP/IP connection to a message broker. Registering a plumber flush callback would let you automatically flush and close the connection before the process exits.
Similarly, the PortAudio library [1] requires you to call Pa_Terminate on pain of possible kernel resource leaks. The plumber mechanism can be used to ensure Pa_Terminate is called before process exit.