[svn:parrot] r39156 - branches/aio_prototype/src/pmc

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Sun May 24 16:38:11 UTC 2009


Author: whiteknight
Date: Sun May 24 16:38:11 2009
New Revision: 39156
URL: https://trac.parrot.org/parrot/changeset/39156

Log:
[aio_prototype] add some functions and rename some functions

Modified:
   branches/aio_prototype/src/pmc/iopoll.pmc

Modified: branches/aio_prototype/src/pmc/iopoll.pmc
==============================================================================
--- branches/aio_prototype/src/pmc/iopoll.pmc	Sun May 24 16:30:42 2009	(r39155)
+++ branches/aio_prototype/src/pmc/iopoll.pmc	Sun May 24 16:38:11 2009	(r39156)
@@ -58,7 +58,7 @@
 }
 
 static void
-poll_io_request(PARROT_INTERP, PMC * self)
+poll_io_requests(PARROT_INTERP, PMC * self)
 {
     DWORD num_bytes = 0;
     LONG key = 0;
@@ -75,6 +75,11 @@
     CreateIoCompletionPort(PARROT_FILEHANDLE(stream)->os_handle,
         PARROT_IOREQUEST(self)->poll, 0, 0);
 }
+
+static void
+free_poll_storage(PARROT_INTERP, PMC * self)
+{
+}
 #endif
 
 #ifdef PIO_OS_UNIX
@@ -99,7 +104,7 @@
 }
 
 static void
-poll_io_request(PARROT_INTERP, PMC * self)
+poll_io_requests(PARROT_INTERP, PMC * self)
 {
 }
 
@@ -116,6 +121,11 @@
     GET_ATTR_os_handle(interp, stream, fd);
     attrs->poll.events[attrs->poll.num_fds_current] = fd;
 }
+
+static void
+free_poll_storage(PARROT_INTERP, PMC * self)
+{
+}
 #endif
 
 #ifdef PIO_OS_STDIO
@@ -137,6 +147,11 @@
 track_stream_events(PARROT_INTERP, PMC * self, PMC * stream)
 {
 }
+
+static void
+free_poll_storage(PARROT_INTERP, PMC * self)
+{
+}
 #endif
 
 


More information about the parrot-commits mailing list