bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#27706: MacOS: decode-time hang


From: Charles A. Roelli
Subject: bug#27706: MacOS: decode-time hang
Date: Sat, 15 Jul 2017 16:19:39 +0200
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:45.0) Gecko/20100101 Thunderbird/45.8.0

Evaluating the following form on my system (macOS 10.6) results in a
hang from Emacs 23 to master:

(decode-time '(-1034058203136 0))

[other values around -1034058203136 don't cause an issue]

The stack trace (stuck in macOS' libc, I think):

(gdb) bt full
#0  0x00007fff83860aef in timesub () from /usr/lib/libSystem.B.dylib
No symbol table info available.
#1  0x00007fff8386081c in _st_localsub () from /usr/lib/libSystem.B.dylib
No symbol table info available.
#2  0x00007fff83869d71 in localtime_r () from /usr/lib/libSystem.B.dylib
No symbol table info available.
#3 0x00000001004586c7 in localtime_rz (tz=0x10210bba0, t=0x7fff5fbf8d20, tm=0x7fff5fbf8ce8) at time_rz.c:296
        abbr_saved = false
        old_tz = 0x1
#4 0x00000001002ba08b in emacs_localtime_rz (tz=0x10210bba0, t=0x7fff5fbf8d20, tm=0x7fff5fbf8ce8) at editfns.c:103
No locals.
#5 0x00000001002c2680 in Fdecode_time (specified_time=..., zone=...) at editfns.c:2163
        time_spec = -67768038400720896
        gmt_tm = {
          tm_sec = 1606388960,
          tm_min = 32767,
          tm_hour = 1766166,
          tm_mday = 1,
          tm_mon = 0,
          tm_year = 0,
          tm_wday = 0,
          tm_yday = 0,
          tm_isdst = 0,
          tm_gmtoff = 10261984,
          tm_zone = 0x7fff5fbf8d30 "`\215\277_\377\177"
        }
        tz = 0x10210bba0
        local_tm = {
          tm_sec = 24,
          tm_min = 38,
          tm_hour = 8,
          tm_mday = 32767,
          tm_mon = 0,
          tm_year = 0,
          tm_wday = 0,
          tm_yday = 0,
          tm_isdst = 0,
          tm_gmtoff = 0,
          tm_zone = 0x0
        }
        tm = 0x0
        tm_year_base = 0

The form is called when compiling the new org-timer.el, which requires
org-clock.el, which itself contains this call that causes the issue:

(defconst org-clock--oldest-date
  (let* ((dichotomy
          (lambda (min max pred)
            (if (funcall pred min) min
              (cl-incf min)
              (while (> (- max min) 1)
                (let ((mean (+ (ash min -1) (ash max -1) (logand min max 1))))
                  (if (funcall pred mean) (setq max mean) (setq min mean)))))
            max))
         (high
          (funcall dichotomy
                   most-negative-fixnum
                   0
                   (lambda (m) (ignore-errors (decode-time (list m 0))))))
         (low
          (funcall dichotomy
                   most-negative-fixnum
                   0
                   (lambda (m) (ignore-errors (decode-time (list high m)))))))
    (list high low))
  "Internal time for oldest date representable on the system.")

As a result, "make" hangs for me, so I delete org-timer.el locally to
get around the problem for now.  But I'd like to find a more permanent
solution to make sure this doesn't happen elsewhere.

Can anyone reproduce this under macOS, and if so, under which macOS
version?  I'd like to know which versions might need a fix for this
problem.






reply via email to

[Prev in Thread] Current Thread [Next in Thread]