mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	thread_pthread.c (gvl_yield): do ubf wakeups when uncontended
Not having contention for GVL could mean everybody else is stuck in blocking region without GVL, so we kick the ubf list in that case. I expect this to fix test_thread_fd_close timeout: http://ci.rvm.jp/results/trunk-test@ruby-sky3/1173398 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64133 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
		
							parent
							
								
									2a4e8c17ed
								
							
						
					
					
						commit
						508f00314f
					
				
					 1 changed files with 6 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -194,6 +194,12 @@ gvl_yield(rb_vm_t *vm, rb_thread_t *th)
 | 
			
		|||
    }
 | 
			
		||||
    else {
 | 
			
		||||
        rb_native_mutex_unlock(&vm->gvl.lock);
 | 
			
		||||
        /*
 | 
			
		||||
         * GVL was not contended when we released, so we have no potential
 | 
			
		||||
         * contenders for reacquisition.  Perhaps they are stuck in blocking
 | 
			
		||||
         * region w/o GVL, too, so we kick them:
 | 
			
		||||
         */
 | 
			
		||||
        ubf_wakeup_all_threads();
 | 
			
		||||
        native_thread_yield();
 | 
			
		||||
        rb_native_mutex_lock(&vm->gvl.lock);
 | 
			
		||||
        rb_native_cond_broadcast(&vm->gvl.switch_wait_cond);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue