1
vote
2answers
69 views
Serial programming: measuring time between characters
I am sending/receiving data over a serial line in Linux and I would like to find the delay between characters.
Modbus uses a 3.5 character delay to detect message frame boundaries …
3
votes
3answers
68 views
What happens when QueryPerformanceCounter is called?
I'm looking into the exact implications of using QueryPerformanceCounter in our system and am trying to understand it's impact on the application. I can see from running it on my 4 …
4
votes
6answers
873 views
How to program a real-time accurate audio sequencer on the iphone?
Hi...
I want to program a simple audio sequencer on the iphone but I can't get accurate timing. The last days I tried all possible audio techniques on the iphone, starting from Au …
1
vote
5answers
167 views
Timing program runtimes in visual C++
Hello everyone,
Is there a quick and easy way of timing a section of a program (or the entire thing) without having to setup a timer class, functions, and variables inside my pro …
0
votes
3answers
49 views
jquery slide and timing
hey there, i have a div that expands when the page is loaded, now i need it to collapse after 30 seconds, does anybody have an idea about how to do it in query?
$(function(){
$(" …
4
votes
4answers
134 views
timeit versus timing decorator
I'm trying to time some code. First I used a timing decorator:
#!/usr/bin/env python
import time
from itertools import izip
from random import shuffle
def timing_val(func):
…
0
votes
1answer
26 views
Walkcycles and timing in pygame
I have a pygame.Timer running in my game calling a draw function 32 times/second. The drawing method gets positions from all elements on my screen and blits them accordingly. Howev …
1
vote
2answers
88 views
Time measurement in ASP.NET page
I have a normal asp.net page containing some code that I want to measure the execution time of. I have created a very basic helper class for this purpose:
public class Timing
{
…
0
votes
2answers
596 views
How to timestamp request logs with millisecond accuracy in Apache 2.0
How do I configure Apache 2.0's log format so that it timestamps each request log with millisecond (or microsecond) accuracy? The docs say that timestamps are specified in strftime …
0
votes
1answer
33 views
KeyListener and timing
Hello,
I am writing program in Java will have to do with music input. I want to use my computer keyboard as instrument.Pretty much it will be as button accordion which I play. I w …
0
votes
5answers
75 views
VB.NET - Precise Time
I need access to very precise timing in a .NET application.
I need microsecond precision.
Is there an easy way to do this in .NET?
1
vote
2answers
64 views
Is it possible to get a history of queries made in postgres
Is it possible to get a history of queries made in postgres? and is it be possible to get the time it took for each query? I'm currently trying to identify slow queries in the appl …
1
vote
3answers
353 views
C# app to C++ dll back to the C# app via callbacks
Hi all,
I'm writing a C# application that calls a C++ dll. This dll is a device driver for an imaging system; when the image is being acquired, a preview of the image is availabl …
2
votes
2answers
170 views
For my game’s main loop what should i consider : DispatcherTimer Vs StoryBoard
I am writing a game in which I want to kick off an event for my game main loop, the event has to be fired after a very small interval of time.
DispatcherTimer helped me in impleme …
1
vote
8answers
138 views
Java performance timing library
I frequent wrap code in a System.nanoTime() pair in order to timing it. Something like:
long start = System.nanoTime();
methodToBeTimed();
long elapsedTime = System.nanoTime() …
