This fixes a bug with the libevent backend on 32-bit platforms: https://github.com/wingo/fibers/issues/86 diff --git a/extensions/libevent.c b/extensions/libevent.c index 4f44de9..52c9d73 100644 --- a/extensions/libevent.c +++ b/extensions/libevent.c @@ -215,7 +215,8 @@ run_event_loop (void *p) microsec = -1; else if (data->timeout >= 0) { - microsec = data->timeout / time_units_per_microsec; + microsec = (time_units_per_microsec == 0) + ? 0 : data->timeout / time_units_per_microsec; tv.tv_sec = 0; tv.tv_usec = microsec; } method='get'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/po/doc/guix-manual.es.po
AgeCommit message (Expand)Author
2020-04-12nls: Update.Ludovic Courtès
2020-03-23nls: Update.Ludovic Courtès
2020-02-14Revert "nls: Update 'es' translation of the manual."...I believe this change breaks guix pull: ./guix.es.texi:20971: @samp missing closing brace This reverts commit d156e3fbcd6fc61a39d1d32622b90b0f8f741729. Christopher Baines
2020-02-14nls: Update 'es' translation of the manual.Julien Lepiller
2019-08-31nls: Update 'es' translation of the manual.Julien Lepiller
2019-05-13nls: Update es translation.Ludovic Courtès
2019-05-01nls: Fix cross-reference syntax error in 'guix-manual.es.po'....* po/doc/guix-manual.es.po: Replace "@pref" with "@pxref". Ludovic Courtès
2019-05-01nls: Update manual translations for de, es, fr, and zh_CN.Ludovic Courtès
2019-04-25nls: Update 'es' translation.Julien Lepiller
2019-04-23doc: Add Spanish translation....* doc/local.mk (info_TEXINFOS): Add guix.es.texi. (TRANSLATED_INFO): Add guix.es.texi and contributing.es.texi. * po/doc/guix-manual.es.po: New file. * po/doc/local.mk: Add guix-manual.es.po. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Miguel Ángel Arruga Vivas