public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgcj/34574] wait() call hangs in _Jv_CondWait taking the monitor with it causing the application to hang
       [not found] <bug-34574-4@http.gcc.gnu.org/bugzilla/>
@ 2013-06-15 16:13 ` pashev.igor at gmail dot com
  2013-10-19 20:24 ` pashev.igor at gmail dot com
  2015-01-11 16:02 ` pashev.igor at gmail dot com
  2 siblings, 0 replies; 6+ messages in thread
From: pashev.igor at gmail dot com @ 2013-06-15 16:13 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34574

Igor Pashev <pashev.igor at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pashev.igor at gmail dot com

--- Comment #2 from Igor Pashev <pashev.igor at gmail dot com> ---
I can confirm it on illumos with gcc 4.7. Tjis prevent me from building openjdk
anf ecj. For ecj:

21071:    gij-4.7 -classpath
build/bootstrap/eclipse-ecj.jar:/usr/share/ant/lib/
-----------------  lwp# 1 / thread# 1  --------------------
 fffffd7f4e16f427 lwp_park (0, 0, 0)
 fffffd7f4e167b06 mutex_lock_impl () + 156
 fffffd7f4e167bdb mutex_lock () + b
 fffffd7f42984a81 _Z13_Jv_MutexLockP11_Jv_Mutex_t () + 51
 0000000000733840 ???????? ()
 f2f1e00000000001 ???????? ()
 0000000000000000 ???????? ()
 0000000000000002 ???????? ()
-----------------  lwp# 2 / thread# 2  --------------------
 fffffd7f4e16f427 lwp_park (0, 0, 0)
 fffffd7f4e168f8f cond_wait_queue () + 4f
 fffffd7f4e1695e2 __cond_wait () + b2
 fffffd7f4e169612 cond_wait () + 22
 fffffd7f4e169649 pthread_cond_wait () + 9
 fffffd7f42984c1c _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi ()
+ 13c
 0000000000000000 ???????? ()
-----------------  lwp# 3 / thread# 3  --------------------
 fffffd7f4e16f427 lwp_park (0, 0, 0)
 fffffd7f4e167b06 mutex_lock_impl () + 156
 fffffd7f4e167bdb mutex_lock () + b
 fffffd7f42984c3d _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi ()
+ 15d
 0000000000000000 ???????? ()
-----------------  lwp# 4 / thread# 4  --------------------
 fffffd7f42984bc7 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi ()
+ e7
 0100000000000000 ???????? ()


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libgcj/34574] wait() call hangs in _Jv_CondWait taking the monitor with it causing the application to hang
       [not found] <bug-34574-4@http.gcc.gnu.org/bugzilla/>
  2013-06-15 16:13 ` [Bug libgcj/34574] wait() call hangs in _Jv_CondWait taking the monitor with it causing the application to hang pashev.igor at gmail dot com
@ 2013-10-19 20:24 ` pashev.igor at gmail dot com
  2015-01-11 16:02 ` pashev.igor at gmail dot com
  2 siblings, 0 replies; 6+ messages in thread
From: pashev.igor at gmail dot com @ 2013-10-19 20:24 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34574

--- Comment #3 from Igor Pashev <pashev.igor at gmail dot com> ---
Created attachment 31052
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=31052&action=edit
Adopted test case

I've made a test case. It work for GCC 4.7 on illumos/amd64 (aka OpenSolaris)

pashev@bok:~/gcj-hang$ make clean
rm -f TestJVSynchronise19thDec
rm -f *.o *.class *.h  
pashev@bok:~/gcj-hang$ make
gcj -d . -C ThreadPool.java
ThreadPool.java:30: warning: Collection is a raw type. References to generic
type Collection<E> should be parameterized
        Collection assignments = new ArrayList(3);
        ^^^^^^^^^^
ThreadPool.java:30: warning: ArrayList is a raw type. References to generic
type ArrayList<E> should be parameterized
        Collection assignments = new ArrayList(3);
                                     ^^^^^^^^^
ThreadPool.java:67: warning: Type safety: The method add(Object) belongs to the
raw type Collection. References to generic type Collection<E> should be
parameterized
        assignments.add(r);
        ^^^^^^^^^^^^^^^^^^
ThreadPool.java:111: warning: The method destroy() from the type Thread is
deprecated
        threads[i].destroy();
        ^^^^^^^^^^^^^^^^^^^^
4 problems (4 warnings)
gcj -d . -C env_test.java
env_test.java:5: warning: The field env_test.taskNumber is never read locally
        private int taskNumber;
                    ^^^^^^^^^^
1 problem (1 warning)  
gcjh -cp . env_test
gcjh -cp . ThreadPool  
g++ -fPIC -I. -c TestJVSynchronise19thDec.cc -o TestJVSynchronise19thDec.o
gcj -o TestJVSynchronise19thDec TestJVSynchronise19thDec.o ThreadPool.java
env_test.java -lstdc++
ThreadPool.java:30: warning: Collection is a raw type. References to generic
type Collection<E> should be parameterized
        Collection assignments = new ArrayList(3);
        ^^^^^^^^^^
ThreadPool.java:30: warning: ArrayList is a raw type. References to generic
type ArrayList<E> should be parameterized
        Collection assignments = new ArrayList(3);
                                     ^^^^^^^^^
ThreadPool.java:67: warning: Type safety: The method add(Object) belongs to the
raw type Collection. References to generic type Collection<E> should be
parameterized
        assignments.add(r);
        ^^^^^^^^^^^^^^^^^^
ThreadPool.java:111: warning: The method destroy() from the type Thread is
deprecated
        threads[i].destroy();
        ^^^^^^^^^^^^^^^^^^^^
env_test.java:5: warning: The field env_test.taskNumber is never read locally
        private int taskNumber;
                    ^^^^^^^^^^
5 problems (5 warnings)


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libgcj/34574] wait() call hangs in _Jv_CondWait taking the monitor with it causing the application to hang
       [not found] <bug-34574-4@http.gcc.gnu.org/bugzilla/>
  2013-06-15 16:13 ` [Bug libgcj/34574] wait() call hangs in _Jv_CondWait taking the monitor with it causing the application to hang pashev.igor at gmail dot com
  2013-10-19 20:24 ` pashev.igor at gmail dot com
@ 2015-01-11 16:02 ` pashev.igor at gmail dot com
  2 siblings, 0 replies; 6+ messages in thread
From: pashev.igor at gmail dot com @ 2015-01-11 16:02 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=34574

--- Comment #4 from Igor Pashev <pashev.igor at gmail dot com> ---
I can reploduce it with Debian/amd64 and gcc4.9:

Thread 3 (Thread 0x7f43f8764700 (LWP 16318)):
#0  __lll_lock_wait () at
../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135
#1  0x00007f445d4f74b9 in _L_lock_909 () from
/lib/x86_64-linux-gnu/libpthread.so.0
#2  0x00007f445d4f72e0 in __GI___pthread_mutex_lock (mutex=0x7f4461280ea0) at
../nptl/pthread_mutex_lock.c:79
#3  0x00007f445ef93684 in _Jv_MutexLock(_Jv_Mutex_t*) () from
/usr/lib/x86_64-linux-gnu/libgcj.so.15
#4  0x00007f445ef8851c in _Jv_MonitorEnter () from
/usr/lib/x86_64-linux-gnu/libgcj.so.15
#5  0x00000000004030fd in JvSynchronize::JvSynchronize (this=0x7f43f8763de0,
o=@0x6057e0: 0x7f44612cbc60) at /usr/include/c++/4.9/gcj/cni.h:99
#6  0x0000000000402f25 in env_test::foo () at TestJVSynchronise19thDec.cc:18
#7  0x0000000000402ef3 in env_test.run()void () at env_test.java:8
#8  0x0000000000402430 in WorkerThread.run()void () at ThreadPool.java:154
#9  0x00007f445ef8c16b in _Jv_ThreadRun(java::lang::Thread*) () from
/usr/lib/x86_64-linux-gnu/libgcj.so.15
#10 0x00007f445ef93ff7 in ?? () from /usr/lib/x86_64-linux-gnu/libgcj.so.15
#11 0x00007f445f7bb748 in ?? () from /usr/lib/x86_64-linux-gnu/libgcj.so.15
#12 0x00007f445d4f50a4 in start_thread (arg=0x7f43f8764700) at
pthread_create.c:309
#13 0x00007f445cc02ccd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 2 (Thread 0x7f43f7f63700 (LWP 16319)):
#0  __lll_lock_wait () at
../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135
#1  0x00007f445d4f74b9 in _L_lock_909 () from
/lib/x86_64-linux-gnu/libpthread.so.0
#2  0x00007f445d4f72e0 in __GI___pthread_mutex_lock (mutex=0x7f4461280ea0) at
../nptl/pthread_mutex_lock.c:79
#3  0x00007f445ef93684 in _Jv_MutexLock(_Jv_Mutex_t*) () from
/usr/lib/x86_64-linux-gnu/libgcj.so.15
#4  0x00007f445ef8851c in _Jv_MonitorEnter () from
/usr/lib/x86_64-linux-gnu/libgcj.so.15
#5  0x00000000004030fd in JvSynchronize::JvSynchronize (this=0x7f43f7f62de0,
o=@0x6057e0: 0x7f44612cbc60) at /usr/include/c++/4.9/gcj/cni.h:99
#6  0x0000000000402f25 in env_test::foo () at TestJVSynchronise19thDec.cc:18
#7  0x0000000000402ef3 in env_test.run()void () at env_test.java:8
#8  0x0000000000402430 in WorkerThread.run()void () at ThreadPool.java:154
#9  0x00007f445ef8c16b in _Jv_ThreadRun(java::lang::Thread*) () from
/usr/lib/x86_64-linux-gnu/libgcj.so.15
#10 0x00007f445ef93ff7 in ?? () from /usr/lib/x86_64-linux-gnu/libgcj.so.15
#11 0x00007f445f7bb748 in ?? () from /usr/lib/x86_64-linux-gnu/libgcj.so.15
#12 0x00007f445d4f50a4 in start_thread (arg=0x7f43f7f63700) at
pthread_create.c:309
#13 0x00007f445cc02ccd in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:111

Thread 1 (Thread 0x7f44612ef740 (LWP 16118)):
#0  pthread_cond_wait@@GLIBC_2.3.2 () at
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_wait.S:185
#1  0x00007f445ef9380b in _Jv_CondWait(_Jv_ConditionVariable_t*, _Jv_Mutex_t*,
long long, int) () from /usr/lib/x86_64-linux-gnu/libgcj.so.15
#2  0x00007f445ef88ab5 in void java::lang::Object::wait(long long, int) () from
/usr/lib/x86_64-linux-gnu/libgcj.so.15
#3  0x0000000000402bd5 in Done.waitDone()void () at ThreadPool.java:213
#4  0x0000000000402a2e in ThreadPool.complete()void () at ThreadPool.java:100
#5  0x000000000040305f in main (argc=1, argv=0x7fff5fac12e8) at
TestJVSynchronise19thDec.cc:39


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libgcj/34574] wait() call hangs in _Jv_CondWait taking the monitor with it causing the application to hang
  2007-12-24 18:24 [Bug libgcj/34574] New: " rajathf at techmahindra dot com
  2007-12-24 18:27 ` [Bug libgcj/34574] " rajathf at techmahindra dot com
  2007-12-24 18:58 ` rajathf at techmahindra dot com
@ 2007-12-24 22:12 ` pinskia at gcc dot gnu dot org
  2 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-12-24 22:12 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|blocker                     |normal
  GCC build triplet|Configured with: ./configure|
                   |--prefix=/software/gcc/4.2.2|
                   |--enab                      |
   GCC host triplet|Thread model: posix sparc-  |
                   |sun-solaris2.9 (MAY BE      |
                   |OTHERS TOO)                 |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34574


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libgcj/34574] wait() call hangs in _Jv_CondWait taking the monitor with it causing the application to hang
  2007-12-24 18:24 [Bug libgcj/34574] New: " rajathf at techmahindra dot com
  2007-12-24 18:27 ` [Bug libgcj/34574] " rajathf at techmahindra dot com
@ 2007-12-24 18:58 ` rajathf at techmahindra dot com
  2007-12-24 22:12 ` pinskia at gcc dot gnu dot org
  2 siblings, 0 replies; 6+ messages in thread
From: rajathf at techmahindra dot com @ 2007-12-24 18:58 UTC (permalink / raw)
  To: gcc-bugs



-- 

rajathf at techmahindra dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|critical                    |blocker


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34574


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug libgcj/34574] wait() call hangs in _Jv_CondWait taking the monitor with it causing the application to hang
  2007-12-24 18:24 [Bug libgcj/34574] New: " rajathf at techmahindra dot com
@ 2007-12-24 18:27 ` rajathf at techmahindra dot com
  2007-12-24 18:58 ` rajathf at techmahindra dot com
  2007-12-24 22:12 ` pinskia at gcc dot gnu dot org
  2 siblings, 0 replies; 6+ messages in thread
From: rajathf at techmahindra dot com @ 2007-12-24 18:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from rajathf at techmahindra dot com  2007-12-24 18:27 -------
the pstack i got at deadlock mite help...


-----------------  lwp# 1 / thread# 1  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde2b9c cond_wait_queue (1a8900, fcdf8b48, 0, 0, fcfc0000, fcdf8000) + d4
 fcde3358 cond_wait (1a8900, 1a8910, 0, 0, 0, 0) + 14
 fcde3394 pthread_cond_wait (1a8900, 1a8910, 0, 0, 0, 0) + 8
 fdeaf8b4 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170260, 0, ffbfefe0, 0, 0) + 20c
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d10, 0, 0, 0, 0, 0) + 8c
 00012e10 _ZN4Done8waitDoneEJvv (153d10, 17ade0, 1, 0, 0, 0) + 38
 00013b28 _ZN10ThreadPool8completeEJvv (17ae28, 17ade0, 14c18, 61760000, 6176,
0) + 80
 00014484 _ZN3abc27WaitForAllThreadsToCompleteEv (ffbff248, 14c18, 37340,
ff3b3a28, ffbfffcc, ff3cc4ec) + 28
 00012d54 main     (1, ffbff324, ffbff32c, 2698c, 0, 0) + c0
 0001280c _start   (0, 0, 0, 0, 0, 0) + 5c
-----------------  lwp# 2 / thread# 2  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde2b9c cond_wait_queue (1a8888, fcdf8b48, 0, 0, fcfc0200, fcdf8000) + d4
 fcde3358 cond_wait (1a8888, 1a8898, 0, 0, 0, 0) + 14
 fcde3394 pthread_cond_wait (1a8888, 1a8898, 0, 0, 0, 0) + 8
 fdeaf8b4 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
ff102280, 0, fcd7bdb0, 0, fcd7be74) + 20c
 fde98d68 _ZN3gnu3gcj7runtime15FinalizerThread3runEJvv (177e10, fcd7be88, 0,
fcdd172c, 5, ff101be8) + e4
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177e10, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcc80, 0, fcd7bfa0, fcd7bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 3 / thread# 3  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc0400, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fcc7bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 80d080, ffffd282) +
8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177cd0, fcc7be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177cd0, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcc50, 0, fcc7bfa0, fcc7bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 4 / thread# 4  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc0600, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fcb7bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 80a880, ffffeb72) +
8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177c80, fcb7be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177c80, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcc40, 0, fcb7bfa0, fcb7bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 5 / thread# 5  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc0800, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fca7bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 808080, 1e62) + 8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177c30, fca7be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177c30, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcc38, 0, fca7bfa0, fca7bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 6 / thread# 6  --------------------
 fcde58f4 lwp_park (0, 0, 0)            <-------Normal Scenario for remaining
threads
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc0a00, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fc97bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 8b7080, ffffd642) +
8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177be0, fc97be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177be0, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcc30, 0, fc97bfa0, fc97bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 7 / thread# 7  --------------------
 fdeaf864 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, 0, 0, 0) + 1bc      <-------Spurious Wake -up
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 8ba000, 1012) + 8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177b90, fc87be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177b90, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcc28, 0, fc87bfa0, fc87bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 8 / thread# 8  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc0e00, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fc77bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 810000, c52) + 8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177b40, fc77be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177b40, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcc20, 0, fc77bfa0, fc77bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 9 / thread# 9  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc1000, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fc67bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 805080, ffffe462) +
8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 177af1, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177af0, fc67be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177af0, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcc18, 0, fc67bfa0, fc67bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 10 / thread# 10  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc1200, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fc57bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 8bc880, bad52) + 8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177aa0, fc57be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177aa0, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcc10, 0, fc57bfa0, fc57bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 11 / thread# 11  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 81010100, ff00) +
104
 fcde206c slow_lock (170210, fcfc1400, 0, 1, 16ff00, 0) + 58
 fdea40c0 _Jv_MonitorEnter (b, 14c18, 0, 0, 815000, ffffd074) + 3c
 00013efc _ZN8IBMMutex7releaseEJvv (153d00, 14c18, 1, 0, 0, 0) + c
 00014324 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 2b8
 000131e4 _ZN12WorkerThread3runEJvv (177a50, fc47be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177a50, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcc08, 0, fc47bfa0, fc47bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 12 / thread# 12  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc1600, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fc37bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 80d800, 2544) + 8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177a00, fc37be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177a00, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcc00, 0, fc37bfa0, fc37bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 13 / thread# 13  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc1800, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fc27bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 8bc080, baa54) + 8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (1779b0, fc27be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (1779b0, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcbf8, 0, fc27bfa0, fc27bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 14 / thread# 14  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc1a00, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fc17bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 815080, 1094) + 8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177960, fc17be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177960, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcbf0, 0, fc17bfa0, fc17bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 15 / thread# 15  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc1c00, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fc07bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 813000, ffffe664) +
8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177910, fc07be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177910, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcbe8, 0, fc07bfa0, fc07bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 16 / thread# 16  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc1e00, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fbf7bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 805880, 4754) + 8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (1778c0, fbf7be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (1778c0, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcbe0, 0, fbf7bfa0, fbf7bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 17 / thread# 17  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc2000, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fbe7bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 808880, 2164) + 8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177870, fbe7be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177870, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcbd8, 0, fbe7bfa0, fbe7bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 18 / thread# 18  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc2200, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fbd7bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 813880, ffffe994) +
8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177820, fbd7be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177820, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcbd0, 0, fbd7bfa0, fbd7bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 19 / thread# 19  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc2400, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fbc7bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 80a080, ffffe874) +
8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (1777d0, fbc7be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (1777d0, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcbc8, 0, fbc7bfa0, fbc7bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 20 / thread# 20  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc2600, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fbb7bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 8ba780, 12e4) + 8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177780, fbb7be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177780, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcbc0, 0, fbb7bfa0, fbb7bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 21 / thread# 21  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc2800, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fba7bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 810800, f54) + 8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (177730, fba7be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (177730, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcbb8, 0, fba7bfa0, fba7bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)
-----------------  lwp# 22 / thread# 22  --------------------
 fcde58f4 lwp_park (0, 0, 0)
 fcde166c mutex_lock_queue (fcdf8b44, 0, 170210, fcdf8000, 0, 0) + 104
 fcde206c slow_lock (170210, fcfc2a00, 0, 0, 0, 0) + 58
 fdeaf8d8 _Z12_Jv_CondWaitP23_Jv_ConditionVariable_tP11_Jv_Mutex_txi (1,
170210, 0, fb97bbc8, 0, 0) + 230
 fdea4298 _ZN4java4lang6Object4waitEJvxi (153d00, 0, 0, 0, 815900, 13c4) + 8c
 00013e8c _ZN8IBMMutex7acquireEJvv (153d00, 17ade0, a, 0, 0, 0) + 88
 000140f4 _ZN3env3runEJvv (17ade0, 26868, 1, 0, 0, 0) + 88
 000131e4 _ZN12WorkerThread3runEJvv (1776e0, fb97be88, 0, 0, 0, ff101be8) + d0
 fdea7f70 _Z13_Jv_ThreadRunPN4java4lang6ThreadE (1776e0, ff1a66a0, 0, ff1a6000,
ff12d474, feb3c510) + 18
 fdeaf3d4 _Z12really_startPv (fcbb0, 0, fb97bfa0, fb97bf7c, 0, 0) + 20
 fe7dd37c GC_start_routine (12ef80, 0, 0, 0, 0, 0) + d4
 fcde57b4 _lwp_start (0, 0, 0, 0, 0, 0)


-- 

rajathf at techmahindra dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rajathf at techmahindra dot
                   |                            |com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34574


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-01-11 16:02 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-34574-4@http.gcc.gnu.org/bugzilla/>
2013-06-15 16:13 ` [Bug libgcj/34574] wait() call hangs in _Jv_CondWait taking the monitor with it causing the application to hang pashev.igor at gmail dot com
2013-10-19 20:24 ` pashev.igor at gmail dot com
2015-01-11 16:02 ` pashev.igor at gmail dot com
2007-12-24 18:24 [Bug libgcj/34574] New: " rajathf at techmahindra dot com
2007-12-24 18:27 ` [Bug libgcj/34574] " rajathf at techmahindra dot com
2007-12-24 18:58 ` rajathf at techmahindra dot com
2007-12-24 22:12 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).