Anthony Liguori 
							
						 
					 
					
						
						
						
						
							
						
						
							7267c0947d 
							
						 
					 
					
						
						
							
							Use glib memory allocation and free functions  
						
						... 
						
						
						
						qemu_malloc/qemu_free no longer exist after this commit.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> 
						
						
					 
					
						2011-08-20 23:01:08 -05:00 
						 
				 
			
				
					
						
							
							
								Paolo Bonzini 
							
						 
					 
					
						
						
						
						
							
						
						
							7447545544 
							
						 
					 
					
						
						
							
							change all other clock references to use nanosecond resolution accessors  
						
						... 
						
						
						
						This was done with:
    sed -i 's/qemu_get_clock\>/qemu_get_clock_ns/' \
        $(git grep -l 'qemu_get_clock\>' )
    sed -i 's/qemu_new_timer\>/qemu_new_timer_ns/' \
        $(git grep -l 'qemu_new_timer\>' )
after checking that get_clock and new_timer never occur twice
on the same line.  There were no missed occurrences; however, even
if there had been, they would have been caught by the compiler.
There was exactly one false positive in qemu_run_timers:
     -    current_time = qemu_get_clock (clock);
     +    current_time = qemu_get_clock_ns (clock);
which is of course not in this patch.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> 
						
						
					 
					
						2011-03-21 09:23:23 +01:00 
						 
				 
			
				
					
						
							
							
								Juan Quintela 
							
						 
					 
					
						
						
						
						
							
						
						
							6ee093c907 
							
						 
					 
					
						
						
							
							Unexport ticks_per_sec variable. Create get_ticks_per_sec() function  
						
						... 
						
						
						
						Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> 
						
						
					 
					
						2009-09-11 10:19:52 -05:00 
						 
				 
			
				
					
						
							
							
								malc 
							
						 
					 
					
						
						
						
						
							
						
						
							d999f7e023 
							
						 
					 
					
						
						
							
							Restore consistent formatting of audio devices  
						
						
						
						
					 
					
						2009-06-20 05:13:29 +04:00 
						 
				 
			
				
					
						
							
							
								malc 
							
						 
					 
					
						
						
						
						
							
						
						
							1a7dafce1d 
							
						 
					 
					
						
						
							
							Remove any pretense that there can be more than one AudioState  
						
						
						
						
					 
					
						2009-05-14 03:20:43 +04:00 
						 
				 
			
				
					
						
							
							
								Paul Brook 
							
						 
					 
					
						
						
						
						
							
						
						
							5561650587 
							
						 
					 
					
						
						
							
							Include assert.h from qemu-common.h  
						
						... 
						
						
						
						Include assert.h from qemu-common.h and remove other direct uses.
cpu-all.h still need to include it because of the dyngen-exec.h hacks
Signed-off-by: Paul Brook <paul@codesourcery.com> 
						
						
					 
					
						2009-05-13 20:54:26 +01:00 
						 
				 
			
				
					
						
							
							
								Paul Brook 
							
						 
					 
					
						
						
						
						
							
						
						
							22d83b140e 
							
						 
					 
					
						
						
							
							Push AUD_init down to devices  
						
						... 
						
						
						
						Now we can safely call AUD_init multiple times we can push it down to
individual audio devices, rather than having to pass it from the board
init.
Signed-off-by: Paul Brook <paul@codesourcery.com> 
						
						
					 
					
						2009-05-12 12:33:04 +01:00 
						 
				 
			
				
					
						
							
							
								aliguori 
							
						 
					 
					
						
						
						
						
							
						
						
							487414f1cb 
							
						 
					 
					
						
						
							
							hw: remove error handling from qemu_malloc() callers (Avi Kivity)  
						
						... 
						
						
						
						Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6529 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2009-02-05 22:06:05 +00:00 
						 
				 
			
				
					
						
							
							
								malc 
							
						 
					 
					
						
						
						
						
							
						
						
							1ea879e558 
							
						 
					 
					
						
						
							
							Make audio violate POSIX less  
						
						... 
						
						
						
						git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5864 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2008-12-03 22:48:44 +00:00 
						 
				 
			
				
					
						
							
							
								ths 
							
						 
					 
					
						
						
						
						
							
						
						
							69b349765c 
							
						 
					 
					
						
						
							
							Fix miscellaneous minor things, by Andre Przywara.  
						
						... 
						
						
						
						git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3826 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2007-12-17 03:15:52 +00:00 
						 
				 
			
				
					
						
							
							
								ths 
							
						 
					 
					
						
						
						
						
							
						
						
							9f0683d9f5 
							
						 
					 
					
						
						
							
							Include qemu-timer.h iff DEBUG is defined.  
						
						... 
						
						
						
						git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3767 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2007-12-02 17:47:33 +00:00 
						 
				 
			
				
					
						
							
							
								ths 
							
						 
					 
					
						
						
						
						
							
						
						
							e140e05cbc 
							
						 
					 
					
						
						
							
							Add missing include, by Sylvain Petreolle.  
						
						... 
						
						
						
						git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3766 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2007-12-02 17:17:45 +00:00 
						 
				 
			
				
					
						
							
							
								pbrook 
							
						 
					 
					
						
						
						
						
							
						
						
							87ecb68bdf 
							
						 
					 
					
						
						
							
							Break up vl.h.  
						
						... 
						
						
						
						git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3674 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2007-11-17 17:14:51 +00:00 
						 
				 
			
				
					
						
							
							
								pbrook 
							
						 
					 
					
						
						
						
						
							
						
						
							d537cf6c86 
							
						 
					 
					
						
						
							
							Unify IRQ handling.  
						
						... 
						
						
						
						git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2635 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2007-04-07 18:14:41 +00:00 
						 
				 
			
				
					
						
							
							
								bellard 
							
						 
					 
					
						
						
						
						
							
						
						
							d929eba5d4 
							
						 
					 
					
						
						
							
							audio endianness API changes (malc)  
						
						... 
						
						
						
						git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2042 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2006-07-04 21:47:22 +00:00 
						 
				 
			
				
					
						
							
							
								bellard 
							
						 
					 
					
						
						
						
						
							
						
						
							546754dc1d 
							
						 
					 
					
						
						
							
							pcm endianness is now explicit (malc)  
						
						... 
						
						
						
						git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1633 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2005-11-20 16:20:39 +00:00 
						 
				 
			
				
					
						
							
							
								bellard 
							
						 
					 
					
						
						
						
						
							
						
						
							c0fe3827ea 
							
						 
					 
					
						
						
							
							audio merge (malc)  
						
						... 
						
						
						
						git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1601 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2005-11-05 18:55:28 +00:00 
						 
				 
			
				
					
						
							
							
								bellard 
							
						 
					 
					
						
						
						
						
							
						
						
							1d14ffa97e 
							
						 
					 
					
						
						
							
							merged 15a_aqemu.patch audio patch (malc)  
						
						... 
						
						
						
						git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1584 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2005-10-30 18:58:22 +00:00 
						 
				 
			
				
					
						
							
							
								bellard 
							
						 
					 
					
						
						
						
						
							
						
						
							fb065187e4 
							
						 
					 
					
						
						
							
							audio clean up (initial patch by malc)  
						
						... 
						
						
						
						git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1131 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2004-11-09 23:09:44 +00:00 
						 
				 
			
				
					
						
							
							
								bellard 
							
						 
					 
					
						
						
						
						
							
						
						
							85571bc741 
							
						 
					 
					
						
						
							
							audio merge (malc)  
						
						... 
						
						
						
						git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1125 c046a42c-6fe2-441c-8c8c-71466251a162 
						
						
					 
					
						2004-11-07 18:04:02 +00:00