Revision: 54600
                            
                                                            
                                    
                                        
Initial Code
                                    
                                    
                                                            
                                    
                                        
Initial URL
                                    
                                    
                                
                                                            
                                    
                                        
Initial Description
                                    
                                    
                                
                                                            
                                    
                                        
Initial Title
                                    
                                    
                                                            
                                    
                                        
Initial Tags
                                    
                                    
                                                            
                                    
                                        
Initial Language
                                    
                                    
                                                    
                        at January 4, 2012 01:00 by tilakapash
                            
                            Initial Code
struct timeval start, end, delta; assert(gettimeofday(&start, NULL) != -1); // LAPS should be huge (about a million, probably) for (int i = 0; i < LAPS; i++) test_function(); assert(gettimeofday(&end, NULL) != -1); timersub(&end, &start, &delta); uint64_t delta_ns = (delta.tv_sec * NSEC_PER_SEC + delta.tv_usec * NSEC_PER_USEC) / LAPS;
Initial URL
Initial Description
Initial Title
How to measure time of execution
Initial Tags
Development
Initial Language
C