Add a little bit of padding.
authorOwen Taylor <otaylor@redhat.com>
Sat, 23 Feb 2002 20:08:45 +0000 (20:08 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Sat, 23 Feb 2002 20:08:45 +0000 (20:08 +0000)
Sat Feb 23 14:54:13 2002  Owen Taylor  <otaylor@redhat.com>

        * glib/giochannel.h (struct _GIOChannel): Add a little bit
        of padding.

        * glib/gmain.h (struct _GSource): Add a little bit of padding.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
glib/giochannel.h
glib/gmain.h

index c9ee6af..fcebf1b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sat Feb 23 14:54:13 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/giochannel.h (struct _GIOChannel): Add a little bit
+       of padding.
+       
+       * glib/gmain.h (struct _GSource): Add a little bit of padding.
+
 2002-02-21  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gdebug.h: New header containing GTK_DEBUG-style debugging
index c9ee6af..fcebf1b 100644 (file)
@@ -1,3 +1,10 @@
+Sat Feb 23 14:54:13 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/giochannel.h (struct _GIOChannel): Add a little bit
+       of padding.
+       
+       * glib/gmain.h (struct _GSource): Add a little bit of padding.
+
 2002-02-21  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gdebug.h: New header containing GTK_DEBUG-style debugging
index c9ee6af..fcebf1b 100644 (file)
@@ -1,3 +1,10 @@
+Sat Feb 23 14:54:13 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/giochannel.h (struct _GIOChannel): Add a little bit
+       of padding.
+       
+       * glib/gmain.h (struct _GSource): Add a little bit of padding.
+
 2002-02-21  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gdebug.h: New header containing GTK_DEBUG-style debugging
index c9ee6af..fcebf1b 100644 (file)
@@ -1,3 +1,10 @@
+Sat Feb 23 14:54:13 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/giochannel.h (struct _GIOChannel): Add a little bit
+       of padding.
+       
+       * glib/gmain.h (struct _GSource): Add a little bit of padding.
+
 2002-02-21  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gdebug.h: New header containing GTK_DEBUG-style debugging
index c9ee6af..fcebf1b 100644 (file)
@@ -1,3 +1,10 @@
+Sat Feb 23 14:54:13 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/giochannel.h (struct _GIOChannel): Add a little bit
+       of padding.
+       
+       * glib/gmain.h (struct _GSource): Add a little bit of padding.
+
 2002-02-21  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gdebug.h: New header containing GTK_DEBUG-style debugging
index c9ee6af..fcebf1b 100644 (file)
@@ -1,3 +1,10 @@
+Sat Feb 23 14:54:13 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/giochannel.h (struct _GIOChannel): Add a little bit
+       of padding.
+       
+       * glib/gmain.h (struct _GSource): Add a little bit of padding.
+
 2002-02-21  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gdebug.h: New header containing GTK_DEBUG-style debugging
index c9ee6af..fcebf1b 100644 (file)
@@ -1,3 +1,10 @@
+Sat Feb 23 14:54:13 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/giochannel.h (struct _GIOChannel): Add a little bit
+       of padding.
+       
+       * glib/gmain.h (struct _GSource): Add a little bit of padding.
+
 2002-02-21  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gdebug.h: New header containing GTK_DEBUG-style debugging
index c9ee6af..fcebf1b 100644 (file)
@@ -1,3 +1,10 @@
+Sat Feb 23 14:54:13 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/giochannel.h (struct _GIOChannel): Add a little bit
+       of padding.
+       
+       * glib/gmain.h (struct _GSource): Add a little bit of padding.
+
 2002-02-21  Matthias Clasen  <maclas@gmx.de>
 
        * glib/gdebug.h: New header containing GTK_DEBUG-style debugging
index 80d2d9b..b368ef7 100644 (file)
@@ -127,6 +127,9 @@ struct _GIOChannel
   guint is_readable    : 1;    /* Cached GIOFlag */
   guint is_writeable   : 1;    /* ditto */
   guint is_seekable    : 1;    /* ditto */
+
+  gpointer reserved1;  
+  gpointer reserved2;  
 };
 
 typedef gboolean (*GIOFunc) (GIOChannel   *source,
index 49e8acc..46568b6 100644 (file)
@@ -52,6 +52,9 @@ struct _GSource
   
   GSource *prev;
   GSource *next;
+
+  gpointer reserved1;
+  gpointer reserved2;
 };
 
 struct _GSourceCallbackFuncs