<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://www.placenet.org/benoit/index.php/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
  <title>Harvard Business School of Echec - GNOME  - Commentaires</title>
  <link>http://www.placenet.org/benoit/index.php/</link>
  <description></description>
  <language>fr</language>
  <pubDate>Sat, 09 Aug 2008 08:26:39 +0200</pubDate>
  <copyright></copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
    
    <item>
    <title>ABI vs. API compatibility - Mart Raudsepp</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/04/22/ABI-vs-API-compatibility#c158</link>
    <guid isPermaLink="false">urn:md5:6f67bf6e0b74720856de773e538226e9</guid>
    <pubDate>Fri, 25 Apr 2008 21:10:11 +0200</pubDate>
    <dc:creator>Mart Raudsepp</dc:creator>
    
    <description>&lt;p&gt;err, yes, you need to implement PSS in all other platforms if you want to add it and not leave it empty for non-linux. Obviously. But you don't need to implement anything else already done yet again with the suggestion in comment #8...&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>ABI vs. API compatibility - Benoît Dejean</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/04/22/ABI-vs-API-compatibility#c157</link>
    <guid isPermaLink="false">urn:md5:1b8f4c5f2dd80a388039dce7fb4ad8f1</guid>
    <pubDate>Wed, 23 Apr 2008 11:11:02 +0200</pubDate>
    <dc:creator>Benoît Dejean</dc:creator>
    
    <description>&lt;p&gt;Whenever i add a new functionnality (which is implemented as 3/4 functions), it has to be ported on linux, the 2 BSD arch and eventually solaris, darwin or aix. I can't do all these ports because of a lack of time/interest. So adding a new function for a single guint64 is too much work/breakage.&lt;/p&gt;


&lt;p&gt;I was looking for alternatives where i would be able to do all the work myself:&lt;br /&gt;
- breaking the ABI moves all the work to distro packagers&lt;br /&gt;
- breaking the API would let me submit trivial patches to upstreams&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>ABI vs. API compatibility - Mart Raudsepp</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/04/22/ABI-vs-API-compatibility#c156</link>
    <guid isPermaLink="false">urn:md5:c3d9b6fd0a53f6e8662b0b565ba1f1ba</guid>
    <pubDate>Tue, 22 Apr 2008 23:22:30 +0200</pubDate>
    <dc:creator>Mart Raudsepp</dc:creator>
    
    <description>&lt;p&gt;Benoît&amp;gt;  &amp;quot;Well, i cannot deprecate anything because that would mean throw away all the different/untested implemtentations on all !linux arch. Adding a new function also means breaking all !linux arch until someone test it (which almost always happens after the first stable release).&amp;quot;&lt;/p&gt;


&lt;p&gt;How about adding the PSS support to the existing functions, but afterwards renaming glibtop_get_proc_mem to the new name, while adding a compatibility wrapper of the old name (keeping API and ABI in effect) that constructs the old style struct out of the results it gets from the new one that has more data - should be just some struct field copying and throwing away the bigger struct before returning the copied (deprecated) compatibility one from glibtop_get_proc_mem&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>ABI vs. API compatibility - Bronson</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/04/22/ABI-vs-API-compatibility#c154</link>
    <guid isPermaLink="false">urn:md5:9640898b3bfb8369b33a58e0374d0f81</guid>
    <pubDate>Tue, 22 Apr 2008 21:32:40 +0200</pubDate>
    <dc:creator>Bronson</dc:creator>
    
    <description>&lt;p&gt;I gotta agree with Rob...  Leave this code alone, deprecate it, and just add a new call that takes a selector to tell what value to return.&lt;/p&gt;


&lt;p&gt;Otherwise, you'll have to figure out hack upon hack upon hack every time you want to make this sort of change in the future.  And, given kernel development, it won't be long before you'll need to extend it again...&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>ABI vs. API compatibility - James Henstridge</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/04/22/ABI-vs-API-compatibility#c152</link>
    <guid isPermaLink="false">urn:md5:cc2c5da00c369877688664d17722e642</guid>
    <pubDate>Tue, 22 Apr 2008 17:22:04 +0200</pubDate>
    <dc:creator>James Henstridge</dc:creator>
    
    <description>&lt;p&gt;If you decide to break the API, one option would be to add a &amp;quot;version&amp;quot; field to the start of the struct.  Require the caller to fill it in before calling glibtop_get_proc_mem() so you can tell how big the caller thinks the struct is.  Include the current version as a #define in the header so the caller can use it to initialise the structure to the right version.&lt;/p&gt;


&lt;p&gt;If you need to expand the struct in the future, increment the version number and add new fields to the end.  Then make glibtop_get_proc_mem() only fill in the fields if the version number is appropriate.&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>ABI vs. API compatibility - Benoît Dejean</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/04/22/ABI-vs-API-compatibility#c151</link>
    <guid isPermaLink="false">urn:md5:8dd16c28596903663acc0ce025bf6365</guid>
    <pubDate>Tue, 22 Apr 2008 16:04:37 +0200</pubDate>
    <dc:creator>Benoît Dejean</dc:creator>
    
    <description>&lt;p&gt;Well, i cannot deprecate anything because that would mean throw away all the different/untested implemtentations on all !linux arch. Adding a new function also means breaking all !linux arch until someone test it (which almost always happens after the first stable release).&lt;/p&gt;


&lt;p&gt;Storing pointers is not an option because the struct may be marshalled across a pipe. And the marshalling code is already terribly broken.&lt;/p&gt;


&lt;p&gt;Adding reserved members is very hard when you don't want to bloat your struct. I've already provisioned glibtop_cpu for 32 CPU, that makes sizeof ~ 2KiB.&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>ABI vs. API compatibility - Jeff Licquia</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/04/22/ABI-vs-API-compatibility#c150</link>
    <guid isPermaLink="false">urn:md5:8a41a85ba6f03e58a86a30cbb5ac0ee4</guid>
    <pubDate>Tue, 22 Apr 2008 15:04:22 +0200</pubDate>
    <dc:creator>Jeff Licquia</dc:creator>
    
    <description>&lt;p&gt;You could start using symbol versioning, and provide both.&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>ABI vs. API compatibility - Mart Raudsepp</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/04/22/ABI-vs-API-compatibility#c149</link>
    <guid isPermaLink="false">urn:md5:fd27700a5e07123f77f91f6d5cd42cb2</guid>
    <pubDate>Tue, 22 Apr 2008 14:20:00 +0200</pubDate>
    <dc:creator>Mart Raudsepp</dc:creator>
    
    <description>&lt;p&gt;Looks like that duplicated guint64 could fit a pointer that could point to a new struct with more padding. However, I'm wondering what's the point of this public structure - wouldn't separate function APIs for a set of these be more ABI proof? if that's a good idea, could just not expose PSS in that struct at all and introduce some new API for this, say glibtop_proc_get_pss. Then again, I assume it's all retrieved in one go and that would reduce efficiency when one needs to call get_pss, get_rss and so on in a row?&lt;br /&gt;
If you need to stick with a struct, it might be a good idea to at some point introduce a new one that has some padding available for future expansion and a new function, say glibtop_get_proc_mem2 (yes, need a better name) that returns it, having library users that need PSS information convert to the API and depend on the new libgtop version.&lt;br /&gt;
Sorry, just thinking out loud, maybe something useful &lt;img src=&quot;/benoit/themes/default/smilies/smile.png&quot; alt=&quot;:)&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>ABI vs. API compatibility - Rob</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/04/22/ABI-vs-API-compatibility#c148</link>
    <guid isPermaLink="false">urn:md5:aafefa8288ee5641a9578d444108b479</guid>
    <pubDate>Tue, 22 Apr 2008 14:06:55 +0200</pubDate>
    <dc:creator>Rob</dc:creator>
    
    <description>&lt;p&gt;Well, all these options are ABI breaking - the 'break the API' options also break ABI, just subtly. which is worse, as its not obvious to developers or package maintainers that something has changed.&lt;br /&gt;
IMHO, the best option is to deprecate glibtop_get_proc_mem and add a new function (say glibtop_get_process_usage or such) that takes a pid and an enum value for which field to return.&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>ABI vs. API compatibility - Murray Cumming</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/04/22/ABI-vs-API-compatibility#c147</link>
    <guid isPermaLink="false">urn:md5:a0112b4991d82db94128c70c3429605d</guid>
    <pubDate>Tue, 22 Apr 2008 14:03:37 +0200</pubDate>
    <dc:creator>Murray Cumming</dc:creator>
    
    <description>&lt;p&gt;If it's this simple then you can just add a new function that returns a new struct, and deprecate (not break) the old one.&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>Power management failure - Calum</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/02/21/gnome-power-manager-failure#c129</link>
    <guid isPermaLink="false">urn:md5:51eb9bcb43ef223a8b899116c926d7ec</guid>
    <pubDate>Thu, 21 Feb 2008 15:49:28 +0100</pubDate>
    <dc:creator>Calum</dc:creator>
    
    <description>&lt;p&gt;Watching Extreme Makeover makes me go &amp;quot;peeeeeeeeeeeewwwwwwwwwwwww&amp;quot;, too.  Only in America do people think veneers look like real teeth...&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>Power management failure - Benoît Dejean</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/02/21/gnome-power-manager-failure#c128</link>
    <guid isPermaLink="false">urn:md5:7b4e0598439c2952d4ac82e42b6c6f39</guid>
    <pubDate>Thu, 21 Feb 2008 12:18:41 +0100</pubDate>
    <dc:creator>Benoît Dejean</dc:creator>
    
    <description>&lt;p&gt;Yep there are bugs like &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=506305&quot; title=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=506305&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug....&lt;/a&gt; and &lt;a href=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=479486&quot; title=&quot;http://bugzilla.gnome.org/show_bug.cgi?id=479486&quot; rel=&quot;nofollow&quot;&gt;http://bugzilla.gnome.org/show_bug....&lt;/a&gt; . But i'm sure it's really related since i already know there are some problems with hal/s2ram.&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>Power management failure - Rui</title>
    <link>http://www.placenet.org/benoit/index.php/post/2008/02/21/gnome-power-manager-failure#c127</link>
    <guid isPermaLink="false">urn:md5:5aa20ef5c42e0f3b1d81dc999e8666af</guid>
    <pubDate>Thu, 21 Feb 2008 11:47:08 +0100</pubDate>
    <dc:creator>Rui</dc:creator>
    
    <description>&lt;p&gt;Yep, gnome-power-manager isn't doing what it's told on my Fedora 8 laptop either. Maybe there's a bug reported about it somewhere already.&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>bootparam mem=128M - Benoît DEJEAN</title>
    <link>http://www.placenet.org/benoit/index.php/post/2007/11/24/bootparam-mem128M#c118</link>
    <guid isPermaLink="false">urn:md5:1ecc6e73afecfd095e880e1ed2de0af9</guid>
    <pubDate>Mon, 26 Nov 2007 09:09:29 +0100</pubDate>
    <dc:creator>Benoît DEJEAN</dc:creator>
    
    <description>&lt;p&gt;I know that GNOME 2.6 would run almost fine with 128MiB. But that was years ago, i'm talking about 2.20.&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>bootparam mem=128M - Scott</title>
    <link>http://www.placenet.org/benoit/index.php/post/2007/11/24/bootparam-mem128M#c117</link>
    <guid isPermaLink="false">urn:md5:d782fd9494034e076ce2e8fa6ee1297b</guid>
    <pubDate>Sun, 25 Nov 2007 22:14:50 +0100</pubDate>
    <dc:creator>Scott</dc:creator>
    
    <description>&lt;p&gt;My wife runs GNOME on a laptop with 128MB of RAM---she usually is running firefox and abiword on top of that!&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>bootparam mem=128M - mike</title>
    <link>http://www.placenet.org/benoit/index.php/post/2007/11/24/bootparam-mem128M#c116</link>
    <guid isPermaLink="false">urn:md5:6ba8435ec3029bdd760dcb43b63ed97e</guid>
    <pubDate>Sun, 25 Nov 2007 21:21:15 +0100</pubDate>
    <dc:creator>mike</dc:creator>
    
    <description>&lt;p&gt;Remind us on the 7th please &lt;img src=&quot;/benoit/themes/default/smilies/smile.png&quot; alt=&quot;:)&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;


&lt;p&gt;(and write a guide for newbies :D)&lt;/p&gt;


&lt;p&gt;most import: disable your gnome-panels before logging in ^^&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>bootparam mem=128M - AdamW</title>
    <link>http://www.placenet.org/benoit/index.php/post/2007/11/24/bootparam-mem128M#c115</link>
    <guid isPermaLink="false">urn:md5:413e1a0abbbe29c4f5fc3e4ee734160c</guid>
    <pubDate>Sun, 25 Nov 2007 20:27:08 +0100</pubDate>
    <dc:creator>AdamW</dc:creator>
    
    <description>&lt;p&gt;I ran GNOME on a P2/450 with 128MB of RAM full time from 2.4 to 2.12. It was slow, but generally worked fine.&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>bootparam mem=128M - Havoc</title>
    <link>http://www.placenet.org/benoit/index.php/post/2007/11/24/bootparam-mem128M#c114</link>
    <guid isPermaLink="false">urn:md5:17f9919882c6e1e81e41042befaba81d</guid>
    <pubDate>Sun, 25 Nov 2007 18:55:50 +0100</pubDate>
    <dc:creator>Havoc</dc:creator>
    
    <description>&lt;p&gt;Finishing just a short list of stuff might have a big impact: dconf/gsettings, gvfs, and nicer dbus-glib bindings including single instance app support. Those things are the last barriers to dropping big piles of old library code, and the people working on them could probably use help testing (and porting apps).&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>bootparam mem=128M - Philip</title>
    <link>http://www.placenet.org/benoit/index.php/post/2007/11/24/bootparam-mem128M#c113</link>
    <guid isPermaLink="false">urn:md5:b25c4af39576d17e561da0edb189d09f</guid>
    <pubDate>Sun, 25 Nov 2007 18:10:36 +0100</pubDate>
    <dc:creator>Philip</dc:creator>
    
    <description>&lt;p&gt;I've got Fedora 8 running on my old Amilo M laptop with 128MiB of RAM. I've removed the services I don't need as well as quite a few other processes, but I haven't had to be excessive in my pruning, and it does run OK (although definitely not brilliantly).&lt;/p&gt;</description>
  </item>
      
    
    <item>
    <title>redundant UI - Steve</title>
    <link>http://www.placenet.org/benoit/index.php/post/2007/08/10/redundant-UI#c95</link>
    <guid isPermaLink="false">urn:md5:d224b4f17964183264fadbd1e1c908d0</guid>
    <pubDate>Sat, 11 Aug 2007 01:55:23 +0200</pubDate>
    <dc:creator>Steve</dc:creator>
    
    <description>&lt;p&gt;This has been the topic of quite some debate, recently!  I mentioned it in a blog post (&lt;a href=&quot;http://www.stevenbrown.ca/blog/archives/160&quot; title=&quot;http://www.stevenbrown.ca/blog/archives/160&quot; rel=&quot;nofollow&quot;&gt;http://www.stevenbrown.ca/blog/arch...&lt;/a&gt;) and on the developer's mailing list, and the lead developer just did a post exclusively about the status icon in the tabs.  &lt;img src=&quot;/benoit/themes/default/smilies/smile.png&quot; alt=&quot;:)&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;


&lt;p&gt;&lt;a href=&quot;http://www.pidgin.im/~seanegan/cgi-bin/pyblosxom.cgi&quot; title=&quot;http://www.pidgin.im/~seanegan/cgi-bin/pyblosxom.cgi&quot; rel=&quot;nofollow&quot;&gt;http://www.pidgin.im/~seanegan/cgi-...&lt;/a&gt;&lt;/p&gt;


&lt;p&gt;It's getting better.  &lt;img src=&quot;/benoit/themes/default/smilies/smile.png&quot; alt=&quot;:)&quot; class=&quot;smiley&quot; /&gt;&lt;/p&gt;</description>
  </item>
      
</channel>
</rss>