BUGS
上传用户:zhenyu
上传日期:2022-04-24
资源大小:268k
文件大小:6k
源码类别:

视频捕捉/采集

开发平台:

Visual C++

  1. ----------
  2. Known bugs
  3. ----------
  4. 1. Not strictly a bug, more of a gotcha.
  5.    Under MS VC++ (only tested with version 6.0), a term_func
  6.    set via the standard C++ set_terminate() function causes the
  7.    application to abort.
  8.    Notes from the MSVC++ manual:
  9.          1) A term_func() should call exit(), otherwise
  10.             abort() will be called on return to the caller.
  11.             A call to abort() raises SIGABRT and the default signal handler
  12.             for all signals terminates the calling program with
  13.             exit code 3.
  14.          2) A term_func() must not throw an exception. Therefore
  15.             term_func() should not call pthread_exit(), which
  16.             works by throwing an exception (pthreadVCE or pthreadVSE)
  17.             or by calling longjmp (pthreadVC).
  18.    Workaround: avoid using pthread_exit() in C++ applications. Exit
  19.    threads by dropping through the end of the thread routine.
  20. 2. Cancellation problems in optimised code
  21.    - Milan Gardian
  22.    This is suspected to be a compiler bug in VC6.0, and also seen in
  23.    VC7.0 and VS .NET 2003. The GNU C++ compiler does not have a problem
  24.    with this, and it has been reported that the Intel C++ 8.1 compiler
  25.    and Visual C++ 2005 Express Edition Beta2 pass testssemaphore4.c
  26.    (which exposes the bug).
  27.    Workaround [rpj - 2 Feb 2002]
  28.    -----------------------------
  29.    [Please note: this workaround did not solve a similar problem in
  30.    snapshot-2004-11-03 or later, even though similar symptoms were seen.
  31.    testssemaphore4.c fails in that snapshot for the VCE version of the
  32.    DLL.]
  33.    The problem disappears when /Ob0 is used, i.e. /O2 /Ob0 works OK,
  34.    but if you want to use inlining optimisation you can be much more
  35.    specific about where it's switched off and on by using a pragma.
  36.    So the inlining optimisation is interfering with the way that cleanup
  37.    handlers are run. It appears to relate to auto-inlining of class methods
  38.    since this is the only auto inlining that is performed at /O1 optimisation
  39.    (functions with the "inline" qualifier are also inlined, but the problem
  40.    doesn't appear to involve any such functions in the library or testsuite).
  41.    In order to confirm the inlining culprit, the following use of pragmas
  42.    eliminate the problem but I don't know how to make it transparent, putting
  43.    it in, say, pthread.h where pthread_cleanup_push defined as a macro.
  44.    #pragma inline_depth(0)
  45.      pthread_cleanup_push(handlerFunc, (void *) &arg);
  46.         /* ... */
  47.      pthread_cleanup_pop(0);
  48.    #pragma inline_depth()
  49.    Note the empty () pragma value after the pop macro. This resets depth to the
  50.    default. Or you can specify a non-zero depth here.
  51.    The pragma is also needed (and now used) within the library itself wherever
  52.    cleanup handlers are used (condvar.c and rwlock.c).
  53.    Use of these pragmas allows compiler optimisations /O1 and /O2 to be
  54.    used for either or both the library and applications.
  55.    Experimenting further, I found that wrapping the actual cleanup handler
  56.    function with #pragma auto_inline(off|on) does NOT work.
  57.    MSVC6.0 doesn't appear to support the C99 standard's _Pragma directive,
  58.    however, later versions may. This form is embeddable inside #define
  59.    macros, which would be ideal because it would mean that it could be added
  60.    to the push/pop macro definitions in pthread.h and hidden from the
  61.    application programmer.
  62.    [/rpj]
  63.    Original problem description
  64.    ----------------------------
  65.    The cancellation (actually, cleanup-after-cancel) tests fail when using VC
  66.    (professional) optimisation switches (/O1 or /O2) in pthreads library. I
  67.    have not investigated which concrete optimisation technique causes this
  68.    problem (/Og, /Oi, /Ot, /Oy, /Ob1, /Gs, /Gf, /Gy, etc.), but here is a
  69.    summary of builds and corresponding failures:
  70.      * pthreads VSE (optimised tests): OK
  71.      * pthreads VCE (optimised tests): Failed "cleanup1" test (runtime)
  72.      * pthreads VSE (DLL in CRT, optimised tests): OK
  73.      * pthreads VCE (DLL in CRT, optimised tests): Failed "cleanup1" test
  74.    (runtime)
  75.    Please note that while in VSE version of the pthreads library the
  76.    optimisation does not really have any impact on the tests (they pass OK), in
  77.    VCE version addition of optimisation (/O2 in this case) causes the tests to
  78.    fail uniformly - either in "cleanup0" or "cleanup1" test cases.
  79.    Please note that all the tests above use default pthreads DLL (no
  80.    optimisations, linked with either static or DLL CRT, based on test type).
  81.    Therefore the problem lies not within the pthreads DLL but within the
  82.    compiled client code (the application using pthreads -> involvement of
  83.    "pthread.h").
  84.    I think the message of this section is that usage of VCE version of pthreads
  85.    in applications relying on cancellation/cleanup AND using optimisations for
  86.    creation of production code is highly unreliable for the current version of
  87.    the pthreads library.
  88. 3. The Borland Builder 5.5 version of the library produces memory read exceptions
  89. in some tests.
  90. 4. pthread_barrier_wait() can deadlock if the number of potential calling
  91. threads for a particular barrier is greater than the barrier count parameter
  92. given to pthread_barrier_init() for that barrier.
  93. This is due to the very lightweight implementation of pthread-win32 barriers.
  94. To cope with more than "count" possible waiters, barriers must effectively
  95. implement all the same safeguards as condition variables, making them much
  96. "heavier" than at present.
  97. The workaround is to ensure that no more than "count" threads attempt to wait
  98. at the barrier.
  99. 5. Canceling a thread blocked on pthread_once appears not to work in the MSVC++ version of the library "pthreadVCE.dll". The test case "once3.c" hangs. I have no clues on this at present. All other versions pass this test ok - pthreadsVC.dll, pthreadsVSE.dll, pthreadsGC.dll and pthreadsGCE.dll.