This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author neologix
Recipients neologix, pitrou, vstinner
Date 2011-10-03.21:18:05
SpamBayes Score 1.0527812e-08
Marked as misclassified No
Message-id <1317676686.26.0.639651817903.issue12156@psf.upfronthosting.co.za>
In-reply-to
Content
test_multiprocessing frequently hangs on FreeBSD < 8 buildbots, and this probably has to do with the limit on the max number of POSIX semaphores:
"""
======================================================================
ERROR: test_notify_all (test.test_multiprocessing.WithProcessesTestCondition)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/home/db3l/buildarea/3.x.bolen-freebsd7/build/Lib/test/test_multiprocessing.py", line 777, in test_notify_all
    cond = self.Condition()
  File "/usr/home/db3l/buildarea/3.x.bolen-freebsd7/build/Lib/multiprocessing/__init__.py", line 189, in Condition
    return Condition(lock)
  File "/usr/home/db3l/buildarea/3.x.bolen-freebsd7/build/Lib/multiprocessing/synchronize.py", line 198, in __init__
    self._lock = lock or RLock()
  File "/usr/home/db3l/buildarea/3.x.bolen-freebsd7/build/Lib/multiprocessing/synchronize.py", line 172, in __init__
    SemLock.__init__(self, RECURSIVE_MUTEX, 1, 1)
  File "/usr/home/db3l/buildarea/3.x.bolen-freebsd7/build/Lib/multiprocessing/synchronize.py", line 75, in __init__
    sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue)
OSError: [Errno 23] Too many open files in system
"""

There are probably dangling semaphores, since the test doesn't use that much POSIX semaphores. Either way, we can't do much about it...
History
Date User Action Args
2011-10-03 21:18:06neologixsetrecipients: + neologix, pitrou, vstinner
2011-10-03 21:18:06neologixsetmessageid: <1317676686.26.0.639651817903.issue12156@psf.upfronthosting.co.za>
2011-10-03 21:18:05neologixlinkissue12156 messages
2011-10-03 21:18:05neologixcreate