[utils] Jython support - disable setproctitle() until ctypes is complete
This commit is contained in:
		
							parent
							
								
									399a76e67b
								
							
						
					
					
						commit
						c1c05c67ea
					
				
					 1 changed files with 6 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -1397,6 +1397,12 @@ def fix_xml_ampersands(xml_str):
 | 
			
		|||
 | 
			
		||||
def setproctitle(title):
 | 
			
		||||
    assert isinstance(title, compat_str)
 | 
			
		||||
 | 
			
		||||
    # ctypes in Jython is not complete
 | 
			
		||||
    # http://bugs.jython.org/issue2148
 | 
			
		||||
    if sys.platform.startswith('java'):
 | 
			
		||||
        return
 | 
			
		||||
 | 
			
		||||
    try:
 | 
			
		||||
        libc = ctypes.cdll.LoadLibrary('libc.so.6')
 | 
			
		||||
    except OSError:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue