consolewrite does not need cons.lock -- can lead to sleep() with lock held
This commit is contained in:
		
							parent
							
								
									d4cecb269f
								
							
						
					
					
						commit
						13dccb0380
					
				
					 1 changed files with 0 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -60,14 +60,12 @@ consolewrite(int user_src, uint64 src, int n)
 | 
			
		|||
{
 | 
			
		||||
  int i;
 | 
			
		||||
 | 
			
		||||
  acquire(&cons.lock);
 | 
			
		||||
  for(i = 0; i < n; i++){
 | 
			
		||||
    char c;
 | 
			
		||||
    if(either_copyin(&c, user_src, src+i, 1) == -1)
 | 
			
		||||
      break;
 | 
			
		||||
    uartputc(c);
 | 
			
		||||
  }
 | 
			
		||||
  release(&cons.lock);
 | 
			
		||||
 | 
			
		||||
  return i;
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue