[Libevent-users] [PATCH] remove useless argument in bufferevent_read_pressure_cb

2007-11-08 Thread Charles Longeau
Hello, In bufferevent_read_pressure_cb() function, the second argument (which is size_t old) is not used. Here's a patch which removes it. Regards, Charles Longeau Index: trunk/libevent/evbuffer.c === --- trunk/libevent/evbuffer.c

[Libevent-users] [OT] craigslist: libevent programmer wanted

2007-11-08 Thread Garth Patil
http://sfbay.craigslist.org/pen/cpg/472325599.html libevent programmer wanted (san mateo) Reply to: [EMAIL PROTECTED] Date: 2007-11-07, 8:33PM PST I'm guessing if you clicked on this link, you probably know what libevent is, and you're probably more than proficient in C. I have a small project

Re: [Libevent-users] [PATCH] remove useless argument in bufferevent_read_pressure_cb

2007-11-08 Thread Nick Mathewson
On Thu, Nov 08, 2007 at 11:05:27AM +0100, Charles Longeau wrote: Hello, In bufferevent_read_pressure_cb() function, the second argument (which is size_t old) is not used. Here's a patch which removes it. Hi, Charles! bufferevent_read_pressure_cb() may not use the second argument, but other

Re: [Libevent-users] libev-1.3e demo release - small u_char event_active() issues

2007-11-08 Thread Marc Lehmann
On Fri, Nov 09, 2007 at 12:47:03AM +0100, Chris Brody-GMail [EMAIL PROTECTED] wrote: First, when I built on OSX, u_char was not defined in event.c. I fixed this problem by #include sys/types.h before ev.h event.h. Hmm, u_char is not used by anything in libev itself, but it is defined in

Re: [Libevent-users] [OT] craigslist: libevent programmer wanted

2007-11-08 Thread Hannah Schroeter
Hi! On Thu, Nov 08, 2007 at 02:19:25PM -0800, Christopher Layne wrote: On Thu, Nov 08, 2007 at 08:11:55AM -0800, Garth Patil wrote: http://sfbay.craigslist.org/pen/cpg/472325599.html libevent programmer wanted (san mateo) - NOT BLOCK ON ANY STEP close() can block. *boom tsst*. On sockets,

Re: [Libevent-users] libev-1.3e demo release

2007-11-08 Thread Marc Lehmann
On Thu, Nov 08, 2007 at 03:03:40PM -0500, Nick Mathewson [EMAIL PROTECTED] wrote: - You probably want event.h to include event_compat.h inside angle brackets, not inside quotes. Its not in fact a problem with embedding as EV_STANDALONE prevents it from being included anyways (so its just a

Re: [Libevent-users] [PATCH] remove useless argument in bufferevent_read_pressure_cb

2007-11-08 Thread Nick Mathewson
On Thu, Nov 08, 2007 at 09:15:18PM +0100, Charles Longeau wrote: Hi, bufferevent_read_pressure_cb() may not use the second argument, but other users of the evbuffer API can and likely do. (The evbuffer API is, after all, exported in event.h.) I don't want to break existing code if I