Your message dated Tue, 31 Oct 2006 11:47:15 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#394125: fixed in ion3 20061029-3
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: ion3
Version: 20060524-3
Recent kernels complain about invalid tv_usec values (>= 10^6) given to
setitimer:
setitimer: ion3 (pid = 28718) provided invalid timeval it_value: tv_sec
= 7 tv_usec = 1457514
setitimer: ion3 (pid = 28718) provided invalid timeval it_interval:
tv_sec = 7 tv_usec = 1457514
This patch fixes it.
diff -urN a/libmainloop/signal.c b/libmainloop/signal.c
--- a/libmainloop/signal.c 2006-05-24 18:23:26.000000000 +0200
+++ b/libmainloop/signal.c 2006-10-17 18:26:59.000000000 +0200
@@ -73,6 +73,8 @@
val.it_value.tv_usec=0;
if(val.it_value.tv_sec<0)
val.it_value.tv_sec=0;
+ val.it_value.tv_sec += val.it_value.tv_usec / 1000000;
+ val.it_value.tv_usec %= 1000000;
}else{
had_tmr=TRUE;
return;
--- End Message ---
--- Begin Message ---
Source: ion3
Source-Version: 20061029-3
We believe that the bug you reported is fixed in the latest version of
ion3, which is due to be installed in the Debian FTP archive:
ion3-dev_20061029-3_all.deb
to pool/main/i/ion3/ion3-dev_20061029-3_all.deb
ion3-doc_20061029-3_all.deb
to pool/main/i/ion3/ion3-doc_20061029-3_all.deb
ion3_20061029-3.diff.gz
to pool/main/i/ion3/ion3_20061029-3.diff.gz
ion3_20061029-3.dsc
to pool/main/i/ion3/ion3_20061029-3.dsc
ion3_20061029-3_alpha.deb
to pool/main/i/ion3/ion3_20061029-3_alpha.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Norbert Tretkowski <[EMAIL PROTECTED]> (supplier of updated ion3 package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Tue, 31 Oct 2006 20:17:46 +0100
Source: ion3
Binary: ion3-doc ion3-dev ion3
Architecture: source all alpha
Version: 20061029-3
Distribution: unstable
Urgency: low
Maintainer: Norbert Tretkowski <[EMAIL PROTECTED]>
Changed-By: Norbert Tretkowski <[EMAIL PROTECTED]>
Description:
ion3 - keyboard-friendly window manager with tiled windows (devel)
ion3-dev - ion3 development files
ion3-doc - ion3 documentation
Closes: 376168 394125 396115
Changes:
ion3 (20061029-3) unstable; urgency=low
.
* Added a new patch from darcs to fix invalid setitimer values.
(closes: #376168, #394125)
* Added another new patch from darcs to fix a crash in tiling_placement_alt
handler. (closes: #396115)
Files:
d135abdf1f5307997610b6ece288c39f 724 x11 extra ion3_20061029-3.dsc
040c944beb3ba50872dac14beb02e83e 28971 x11 extra ion3_20061029-3.diff.gz
6cc12068be1205b45b6200c4a91b2a20 68904 devel extra ion3-dev_20061029-3_all.deb
d342ddcc73bf14c871b8c2a9248b429f 138800 doc extra ion3-doc_20061029-3_all.deb
3ee5c1f3322c8ae73731f76e1857505b 1698500 x11 extra ion3_20061029-3_alpha.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (GNU/Linux)
iD8DBQFFR6XGr/RnCw96jQERAnm9AKCUE3vJx6K6IbGfI8gJoSujjHB/UgCfah2u
D0QLImaNBkym9l2lQtWAICI=
=tiN+
-----END PGP SIGNATURE-----
--- End Message ---