 48e438a3aa
			
		
	
	
		48e438a3aa
		
	
	
	
	
		
			
			This commit was created with scripts/clean-includes. All .c should include qemu/osdep.h first. The script performs three related cleanups: * Ensure .c files include qemu/osdep.h first. * Including it in a .h is redundant, since the .c already includes it. Drop such inclusions. * Likewise, including headers qemu/osdep.h includes is redundant. Drop these, too. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Message-Id: <20230202133830.2152150-6-armbru@redhat.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  *  process related system call shims and definitions
 | |
|  *
 | |
|  *  Copyright (c) 2013-2014 Stacey D. Son
 | |
|  *
 | |
|  *  This program is free software; you can redistribute it and/or modify
 | |
|  *  it under the terms of the GNU General Public License as published by
 | |
|  *  the Free Software Foundation; either version 2 of the License, or
 | |
|  *  (at your option) any later version.
 | |
|  *
 | |
|  *  This program is distributed in the hope that it will be useful,
 | |
|  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  *  GNU General Public License for more details.
 | |
|  *
 | |
|  *  You should have received a copy of the GNU General Public License
 | |
|  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| #ifndef BSD_PROC_H_
 | |
| #define BSD_PROC_H_
 | |
| 
 | |
| #include <sys/resource.h>
 | |
| 
 | |
| /* exit(2) */
 | |
| static inline abi_long do_bsd_exit(void *cpu_env, abi_long arg1)
 | |
| {
 | |
| #ifdef TARGET_GPROF
 | |
|     _mcleanup();
 | |
| #endif
 | |
|     gdb_exit(arg1);
 | |
|     qemu_plugin_user_exit();
 | |
|     _exit(arg1);
 | |
| 
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| #endif /* !BSD_PROC_H_ */
 |