From b1341f056af78b1b1d8a3ae8cb53665d0e3e48d2 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 23 Feb 2008 19:22:19 +0000 Subject: [PATCH] r18379@catbus: nickm | 2008-02-23 14:22:12 -0500 mention event_get_method() in whatsnew-14.txt. Remove duplicate mention of changed tag length. Fix a typo in Changelog svn:r659 --- ChangeLog | 2 +- whatsnew-14.txt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index d5e8524e..5a7d41bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,7 +8,7 @@ Changes in 1.4.2: o Use a 64-bit field to hold HTTP content-lengths. Patch from Scott Lamb. o Allow regression code to build even without Python installed o remove NDEBUG ifdefs from evdns.c - o udpate documentation of event_loop and event_base_loop; from Tani Hosokawa. + o update documentation of event_loop and event_base_loop; from Tani Hosokawa. o detect integer types properly on platforms without stdint.h o Remove "AM_MAINTAINER_MODE" declaration in configure.in: now makefiles and configure should get re-generated automatically when Makefile.am or configure.in chanes. diff --git a/whatsnew-14.txt b/whatsnew-14.txt index 387ff244..ae2cdcd0 100644 --- a/whatsnew-14.txt +++ b/whatsnew-14.txt @@ -98,8 +98,8 @@ What's New In Libevent 1.4: pending events from getting executed. This behavior is useful for scripting languages to implement exceptions from inside callbacks. - RPC structures can now use 32-bit numbers as tags; this is - wire-compatible, but changes the APIs slightly. + There's a new event_base_get_method() function, for use in place of + event_get_method() in multi-base applications. 2.3. New in HTTP. @@ -145,7 +145,7 @@ What's New In Libevent 1.4: 4. Big performance improvements Libevent now uses a min-heap rather than a red-black tree to track - timeouts. This means that finding the next timeouts to fire is now + timeouts. This means that finding the next timeout to fire is now O(1) instead of (lg n). The win32 select-based backend now uses a red-black tree to map