Author: allison
Date: Thu Nov 27 23:27:50 2008
New Revision: 33297
Modified:
branches/pdd22io_part2/src/events.c
Log:
[pdd22io] Remove two more instances of old PIO_* functions.
Modified: branches/pdd22io_part2/src/events.c
==============================================================================
--- branches/pdd22io_part2/src/events.c (original)
+++ branches/pdd22io_part2/src/events.c Thu Nov 27 23:27:50 2008
@@ -805,7 +805,7 @@
for (i = 0; i < ios->n; ++i) {
parrot_event * const ev = ios->events[i];
PMC * const pio = ev->u.io_event.pio;
- const int fd = PIO_getfd(NULL, pio);
+ const int fd = Parrot_io_getfd(NULL, pio);
if (fd == ready_rd) {
/* remove from event list */
@@ -909,7 +909,7 @@
case IO_THR_MSG_ADD_SELECT_RD:
{
PMC * const pio =
buf.ev->u.io_event.pio;
- const int fd = PIO_getfd(NULL, pio);
+ const int fd = Parrot_io_getfd(NULL,
pio);
if (FD_ISSET(fd, &act_rfds)) {
mem_sys_free(buf.ev);
break;