mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-03 16:46:18 +00:00 
			
		
		
		
	kqueue(2) is currently broken when used with /dev/null and a few other
devices. An upcoming fix for some problems with the client stdout/stderr handling relies on it working, so make tmux force libevent to use poll(2) via EVENT_NOKQUEUE, until we have fixed kqueue.
This commit is contained in:
		
							
								
								
									
										3
									
								
								server.c
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								server.c
									
									
									
									
									
								
							@@ -139,8 +139,11 @@ server_start(char *path)
 | 
			
		||||
		fatal("daemon failed");
 | 
			
		||||
 | 
			
		||||
	/* event_init() was called in our parent, need to reinit. */
 | 
			
		||||
	if (setenv("EVENT_NOKQUEUE", "1", 1) != 0)
 | 
			
		||||
		fatal("setenv");
 | 
			
		||||
	if (event_reinit(ev_base) != 0)
 | 
			
		||||
		fatal("event_reinit failed");
 | 
			
		||||
	unsetenv("EVENT_NOKQUEUE");
 | 
			
		||||
	clear_signals();
 | 
			
		||||
 | 
			
		||||
	logfile("server");
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user