From: Jesse Noller Date: Tue, 20 Jan 2009 00:23:01 +0000 (+0000) Subject: merge r68787 to py3k X-Git-Tag: v3.1a1~459 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7edf1298c46642adbec42e0b539fa058528166fd;p=python merge r68787 to py3k --- diff --git a/Modules/_multiprocessing/pipe_connection.c b/Modules/_multiprocessing/pipe_connection.c index ad16fc89d3..27e79dda7d 100644 --- a/Modules/_multiprocessing/pipe_connection.c +++ b/Modules/_multiprocessing/pipe_connection.c @@ -83,10 +83,8 @@ conn_recv_string(ConnectionObject *conn, char *buffer, * Check whether any data is available for reading */ -#define conn_poll(conn, timeout) conn_poll_save(conn, timeout, _save) - static int -conn_poll_save(ConnectionObject *conn, double timeout, PyThreadState *_save) +conn_poll(ConnectionObject *conn, double timeout, PyThreadState *_save) { DWORD bytes, deadline, delay; int difference, res;