You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							1.3 KiB
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							1.3 KiB
						
					
					
				| # --- SDE-COPYRIGHT-NOTE-BEGIN --- | |
| # This copyright note is auto-generated by ./scripts/Create-CopyPatch. | |
| # | |
| # Filename: package/.../gdb/legacy_sus.patch | |
| # Copyright (C) 2010 - 2011 The OpenSDE Project | |
| # | |
| # More information can be found in the files COPYING and README. | |
| # | |
| # This patch file is dual-licensed. It is available under the license the | |
| # patched project is licensed under, as long as it is an OpenSource license | |
| # as defined at http://www.opensource.org/ (e.g. BSD, X11) or 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. | |
| # --- SDE-COPYRIGHT-NOTE-END --- | |
|  | |
| usleep() was deprecated by SUSv3 and newer LIBCs are starting to enforce that | |
| deprecation. | |
|  | |
| diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c | |
| index 44a2a21..4e70f80 100644 | |
| --- a/gdb/linux-nat.c | |
| +++ b/gdb/linux-nat.c | |
| @@ -856,7 +856,8 @@ holding the child stopped.  Try \"set detach-on-fork\" or \ | |
|  				    "LCFF: no VFORK_DONE " | |
|  				    "support, sleeping a bit\n"); | |
|   | |
| -	      usleep (10000); | |
| +	      const struct timespec t = {0, 10000000L}; | |
| +	      nanosleep(&t, NULL); | |
|   | |
|  	      /* Pretend we've seen a PTRACE_EVENT_VFORK_DONE event, | |
|  		 and leave it pending.  The next linux_nat_resume call
 | |
| 
 |