head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.24 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.22 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.20 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.18 pkgsrc-2011Q2-base:1.3 pkgsrc-2009Q4:1.3.0.16 pkgsrc-2009Q4-base:1.3 pkgsrc-2008Q4:1.3.0.14 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.12 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.10 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.3.0.8 pkgsrc-2008Q2-base:1.3 pkgsrc-2008Q1:1.3.0.6 pkgsrc-2008Q1-base:1.3 pkgsrc-2007Q4:1.3.0.4 pkgsrc-2007Q4-base:1.3 pkgsrc-2007Q3:1.3.0.2 pkgsrc-2007Q3-base:1.3 pkgsrc-2007Q2:1.2.0.8 pkgsrc-2007Q2-base:1.2 pkgsrc-2007Q1:1.2.0.6 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.4 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.2 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.1.0.6 pkgsrc-2006Q2-base:1.1 pkgsrc-2006Q1:1.1.0.4 pkgsrc-2006Q1-base:1.1 pkgsrc-2005Q4:1.1.0.2 pkgsrc-2005Q4-base:1.1; locks; strict; comment @# @; 1.3 date 2007.09.20.21.12.26; author wiz; state dead; branches; next 1.2; 1.2 date 2006.08.06.19.06.44; author jmmv; state Exp; branches; next 1.1; 1.1 date 2005.10.12.21.49.39; author jmmv; state Exp; branches; next ; desc @@ 1.3 log @Rename libgtop2 to libgtop, to match upstream name. @ text @$NetBSD: patch-bb,v 1.2 2006/08/06 19:06:44 jmmv Exp $ From FreeBSD's GNOME development repository. --- lib/write.c.orig 2006-04-10 10:41:46.000000000 +0200 +++ lib/write.c @@@@ -22,6 +22,7 @@@@ */ #include +#include #include #include @@@@ -42,15 +43,19 @@@@ glibtop_write_l (glibtop *server, size_t fprintf (stderr, "LIBRARY: really writing %d bytes.\n", (int)size); #endif +retry: if (server->socket) { ret = send (server->socket, buf, size, 0); } else { ret = write (server->output [1], buf, size); } - if (ret < 0) + if (ret < 0) { + if (errno == EINTR) + goto retry; glibtop_error_io_r (server, ngettext("wrote %d byte", "wrote %d bytes", size), (int) size); + } } @ 1.2 log @Update to 2.14.2. Grrr, how much I hate this package -- and its collection of patches --, you can't imagine. July 27, 2006: Overview of changes in 2.14.2 ============================================ * Updated solaris support (hua.zhang@@sun.com) * Small linux updates and improvments. April 10, 2006: Overview of changes in 2.14.1 ============================================= * Updated translations. * Fixed NetBSD port (Julio M. Merino Vidal ). * Fixed some warnings. @ text @d1 1 a1 1 $NetBSD: patch-bb,v 1.1 2005/10/12 21:49:39 jmmv Exp $ @ 1.1 log @Update to 2.12.0. Thanks go to the FreeBSD GNOME developers for all the patches I borrowed from them (patch-b*). September 4, 2005: Overview of changes from 2.11.92 to 2.12.0 ============================================================= * Updated translations. August 22, 2005: Overview of changes from 2.11.91 to 2.11.92 ============================================================ * Linux: - fixed for 2.6 without /sys - glibtop_get_cpu() : Do not add irq, softirq and iowait to idle. August 9, 2005: Overview of changes from 2.11.90 to 2.11.91 =========================================================== * All: - cleaned some headers. - removed static examples. * Linux: - fixed some issues with 2.6 without /sys July 24, 2005: Overview of changes from 2.11.2 to 2.11.90 ========================================================= * Linux: - fixed glibtop_uptime .flags. July &3, 2005: Overview of changes from 2.11.1 to 2.11.2 ======================================================== * Linux: - little improvements for 2.6. July 3, 2005: Overview of changes from 2.11.0 to 2.11.1 ======================================================= * Linux: - glibtop_get_swap : added page(in|out) for linux 2.6. June 8, 2005: Overview of changes from 2.10.x to 2.11.0 ======================================================= * Replaced a lot of macros by functions * Got rid of dozens of useless files. * libgtop 2.11.x are and will stay API and ABI compatible with 2.10.x, i swear. @ text @d1 1 a1 1 $NetBSD$ d5 1 a5 1 --- lib/write.c.orig 2005-06-06 14:33:42.000000000 +0200 d15 2 a16 2 @@@@ -42,12 +43,16 @@@@ glibtop_write_l (glibtop *server, size_t fprintf (stderr, "LIBRARY: really writing %d bytes.\n", size); d30 4 a33 1 glibtop_error_io_r (server, ngettext ("wrote %d byte", "wrote %d bytes", size), size); @