summaryrefslogtreecommitdiff
path: root/gio/gunixinputstream.c
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2013-06-11 00:29:58 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2013-06-24 14:18:01 +0100
commit32747def4bb4cce7cfc4f0f8ba8560392ec9ad3d (patch)
tree3caf429cb269a3046af9512dbd7b9bee94381e6a /gio/gunixinputstream.c
parentaba80eea6c2965ee253a675610bd31c3dc256419 (diff)
downloadglib-32747def4bb4cce7cfc4f0f8ba8560392ec9ad3d.tar.gz
gio: Use the new private instance data declaration
Use the newly added macros, and remove the explicit calls to g_type_class_add_private(). https://bugzilla.gnome.org/show_bug.cgi?id=700035
Diffstat (limited to 'gio/gunixinputstream.c')
-rw-r--r--gio/gunixinputstream.c27
1 files changed, 8 insertions, 19 deletions
diff --git a/gio/gunixinputstream.c b/gio/gunixinputstream.c
index 5ed5cd8e0..dd6af1a77 100644
--- a/gio/gunixinputstream.c
+++ b/gio/gunixinputstream.c
@@ -63,22 +63,23 @@ enum {
PROP_CLOSE_FD
};
+struct _GUnixInputStreamPrivate {
+ int fd;
+ guint close_fd : 1;
+ guint is_pipe_or_socket : 1;
+};
+
static void g_unix_input_stream_pollable_iface_init (GPollableInputStreamInterface *iface);
static void g_unix_input_stream_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface);
G_DEFINE_TYPE_WITH_CODE (GUnixInputStream, g_unix_input_stream, G_TYPE_INPUT_STREAM,
+ G_ADD_PRIVATE (GUnixInputStream)
G_IMPLEMENT_INTERFACE (G_TYPE_POLLABLE_INPUT_STREAM,
g_unix_input_stream_pollable_iface_init)
G_IMPLEMENT_INTERFACE (G_TYPE_FILE_DESCRIPTOR_BASED,
g_unix_input_stream_file_descriptor_based_iface_init)
)
-struct _GUnixInputStreamPrivate {
- int fd;
- guint close_fd : 1;
- guint is_pipe_or_socket : 1;
-};
-
static void g_unix_input_stream_set_property (GObject *object,
guint prop_id,
const GValue *value,
@@ -119,22 +120,13 @@ static GSource *g_unix_input_stream_pollable_create_source (GPollableInputStream
GCancellable *cancellable);
static void
-g_unix_input_stream_finalize (GObject *object)
-{
- G_OBJECT_CLASS (g_unix_input_stream_parent_class)->finalize (object);
-}
-
-static void
g_unix_input_stream_class_init (GUnixInputStreamClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
GInputStreamClass *stream_class = G_INPUT_STREAM_CLASS (klass);
-
- g_type_class_add_private (klass, sizeof (GUnixInputStreamPrivate));
gobject_class->get_property = g_unix_input_stream_get_property;
gobject_class->set_property = g_unix_input_stream_set_property;
- gobject_class->finalize = g_unix_input_stream_finalize;
stream_class->read_fn = g_unix_input_stream_read;
stream_class->close_fn = g_unix_input_stream_close;
@@ -246,10 +238,7 @@ g_unix_input_stream_get_property (GObject *object,
static void
g_unix_input_stream_init (GUnixInputStream *unix_stream)
{
- unix_stream->priv = G_TYPE_INSTANCE_GET_PRIVATE (unix_stream,
- G_TYPE_UNIX_INPUT_STREAM,
- GUnixInputStreamPrivate);
-
+ unix_stream->priv = g_unix_input_stream_get_private (unix_stream);
unix_stream->priv->fd = -1;
unix_stream->priv->close_fd = TRUE;
}