From: Alexis Laferrière Date: Fri, 26 Dec 2014 22:03:06 +0000 (-0500) Subject: lib/socket: `PollFD` is `FinalizableOnce` X-Git-Tag: v0.7.1~37^2~1 X-Git-Url: http://nitlanguage.org lib/socket: `PollFD` is `FinalizableOnce` Signed-off-by: Alexis Laferrière --- diff --git a/lib/socket/socket_c.nit b/lib/socket/socket_c.nit index 793b1c5..ba76860 100644 --- a/lib/socket/socket_c.nit +++ b/lib/socket/socket_c.nit @@ -37,6 +37,7 @@ in "C" `{ # Wrapper for the data structure PollFD used for polling on a socket class PollFD + super FinalizableOnce # The PollFD object private var poll_struct: NativeSocketPollFD @@ -76,6 +77,10 @@ class PollFD return response & mask; `} + redef fun finalize_once + do + poll_struct.free + end end # Data structure used by the poll function