0
votes
2answers
28 views

timeout event design with a detached thread

I have a linked list, and I insert nodes into it frequently. for each node, after it is inserted, an element inside the node needs to be updated in 5 seconds, if no updating happends inside the 5 ...
1
vote
2answers
42 views

Is using timers/signals in c static libraries bad practice?

I'm building two static c libraries. Each of the libraries have a routine that needs to run once every second after calling mylib_init(); I implemented this in each library using setitimer, which ...
0
votes
1answer
29 views

associate a one-time timeout timer to a row in sqlite table

I want to construct a sqlite table in my program(linux C): it has 3 columns/fields: 1 ip/port pair, 2 a FIFO queue pointer, 3 a process id or thread id I'm not familiar with sqlite now, If I ...
1
vote
1answer
57 views

C: Writing a proper time-out

Upon closely scouring through resources, I'm still not entirely sure how to write a proper and usable timer function in C. I am not working with threads (or parallelizable code). I simply want to ...
0
votes
0answers
24 views

changing background images automatically

I am starting to work on a program to pull a certain number of images out of a folder and use them to create a collage, which then gets set as the windows wallpaper. I know how to import the images, ...
0
votes
0answers
60 views

Linux timer expiry issue while using timer_settime

I set up a recurring Linux timer with timer_settime and signal handler. It works fine except for the first time. For example, if I set the timer to 10ms, for the very first time the signal handler ...
2
votes
2answers
84 views

how to run while loop for some milisecond in linux kernel? [duplicate]

i need to do some polling in Linux kernel for continues some time so i need to design while loop that exits after some milliseconds interval. So how can i do that? I have though to use gettimeofday() ...
1
vote
1answer
81 views

Is Linux timer a process

I'm trying to understand timers in linux to use it in my application, I've collected code from multiple sources and made the following program #include <stdlib.h> #include <unistd.h> ...
0
votes
0answers
52 views

tips on designing a non-blocking C timer? [duplicate]

In C: When a user press "Z" a non-blocking timer should start, after 5 seconds this timer will stop. During this time period the user may press z again to "pause" the timer as well, incase they want ...
0
votes
1answer
91 views

Initializing Timers in C [duplicate]

I'm running Linux and have this code snippets that I want to use to manipulate a timer in C that every 40ms triggers a function. So far I'm only trying to run the section that creates and starts the ...
0
votes
1answer
143 views

Linux Kernel delay, below jiffies, without busy-waiting

i need to set a signal high and low by time in a linux kernel, using, timer and mdelay(). hightime: 0.01ms-20.00ms; lowtime:10ms-1000ms both are adjustable by userspace. For the lowtime i use an ...
2
votes
2answers
115 views

Executing a function at specific intervals

The task is to execute a function (say Processfunction()) every x (say x=10) seconds. With below code, I'm able to call Processfunction() every x seconds. Question: How to handle the case where the ...
0
votes
1answer
147 views

Implement timer in PIC18F for random number generation

There has been a lot of time since I don't post anything here. Today I came here looking for help to implement a timer in a PIC18F microcontroller. I want this timer to be used for using it as seed ...
1
vote
1answer
113 views

How to implement C timer in Vxworks

I have implemented timer functionality to find the performance of my task in windows and linux. But linux implementation is not working in Vxworks PPC 750 board. gettimeofday is not available in ...
0
votes
0answers
51 views

arm lm3s8962 polling RIS

Has anyone tried to implement polling the RIS(RAW INTERRUPT STATUS BIT) in LM3S8962 ARM-CORTEX M3 controller , I tried it but was not able to succeed . it is a timer status bit which is set when the ...
1
vote
1answer
101 views

How to find an elapsed time of a C function in windows or linux

I am doing some execution in a function my_task. I want to calculate how much time (or clock cycles) taken for CPU to execute this function, because I am going to do performance improvement on this ...
0
votes
4answers
162 views

Why setTimer is not working? [duplicate]

I have below program. I would like to know how setTimer works. So, I wrote a program but could not able to understand why TimerProc function not getting called. Why? What else need to be done to fire ...
2
votes
1answer
137 views

POSIX timer runs at twice the expected frequency

In order to create a high accuracy timer, I have written a module that instantiates a POSIX timer using the timer_create() function. It uses CLOCK_REALTIME as its clock kind, SIGEV_SIGNAL as ...
1
vote
2answers
278 views

Creating a Timer in C

How do I create a timer? A timer like the one in Visual Basic; you set an interval, if the timer is enabled it waits until the time is up. I don't want to use an existing library because I want to ...
0
votes
1answer
41 views

breaking out of a double after an elapsed time in C

I have a question I am writing a code that find the perfect number by brute forcing the algorithm which is required by my assignment. I want to see how far the ranges goes in 15 seconds. I tried using ...
1
vote
1answer
259 views

how to activate 16bit timer on AVR programming

I have an atmega168a chip. I use Counter 0 to toggle PORTC by using ISR(TIMER0_COMPA_vect) and ISR(TIMERB_COMPA_vect) interrupt sub-routines. I would like to activate the 16-bit timer when if ...
2
votes
3answers
156 views

how to measure time in linux?

I want to write data into a file when given time parameter : for example I get x= 7 -> meaning for the next 7 seconds write some random data into a file I got some difficulties doing that , I've ...
2
votes
3answers
276 views

ObjC/C/C++ high resolution timer with callback

I was sure this question has been asked before so I did of course use the search function to check if there's an answer solving my issue. However, all I could find were a lot of answers on measuring ...
1
vote
2answers
58 views

run func() based on what time it is

i wrote some code that monitors a directory DIR with inotify() and when a file gets moved in DIR i get a .txt output of that file(its an nfcapd file with flows of my network interface). This happens ...
0
votes
1answer
85 views

How usecs_to_jiffies transforms usecs to jiffies if jiffies are in resolution of msecs?

from here: The value of HZ varies across kernel versions and hardware platforms. On i386 the situation is as follows: on kernels up to and including 2.4.x, HZ was 100, giving ...
0
votes
1answer
392 views

clock_gettime on Raspberry Pi with C

I want to measure the time between the start to the end of the function in a loop. This difference will be used to set the amount of loops of the inner while-loops which does some here not important ...
1
vote
2answers
167 views

Execute a method every x seconds in C

Is there an example of a working timer that executes some function every x amount seconds using C. I appreciate an example working code. Thanks.
0
votes
1answer
21 views

Is Timer created with eloop_register_timeout in hostapd runs asynchronously

I wonder whether Timer created with int eloop_register_timeout (unsigned int secs, unsigned int usecs, eloop_timeout_handler handler, ...
1
vote
2answers
175 views

Calculating average per second in C

I have an increasing integer value and want to find the average per second of that integer. I am aware that timers do not exist in C unless you do something specific and complicated [Im new to C] Is ...
0
votes
1answer
158 views

libevent: make timer persistent

I have the following code: #include <stdio.h> #include <sys/time.h> #include <event.h> void say_hello(int fd, short event, void *arg){ printf("Hello\n"); } int main(int ...
0
votes
1answer
294 views

unknown type name 'clockid_t'

I am trying to use C code written on a Linux platform on Mac OS X. I am running into an error related to timers: ../src/stinger/timer.c:61:1: error: unknown type name 'clockid_t' ...
0
votes
4answers
172 views

C++ fine granular time

The following piece of code gives 0 as runtime of the function. Can anybody point out the error? struct timeval start,end; long seconds,useconds; gettimeofday(&start, NULL); int ...
1
vote
1answer
215 views

Write timer in Linux device driver

I'm newbies with the module linux. I try to create a counter module where the counter is increment on timer callback. The result of the counter must be send to an other module (a memory module). ...
2
votes
1answer
99 views

void osSleep(tU32 ticks) - how it works (timer in micro-controller)?

I have a code for the micro-controller in C. Basing on the examples I have, I use the function "void osSleep(tU32 ticks)" to stop the program for a while. Unfortunately, I don't know how it really ...
0
votes
2answers
116 views

A simple timeout function

I came across a timeout function in a product line code which get me really confused: int TestTimeOut(unsigned long Timed_Val1, unsigned long Timed_Val2) { Timed_Val2 = Timed_Val1 + (Timed_Val2 * ...
1
vote
0answers
106 views

No signals sent (POSIX and C)

I have written the code below, and I want the following: In every 5 secs the parent gets a random int and puts into into the shared mem, then sends a signal to its child. The child calculates how ...
0
votes
0answers
84 views

To perform a task when timer is running

Please help me, i have created a timer and I want to perform a specific task when my timer is running. but my code is not allowing me to run the task when timer is running. It only sleeps when timer ...
1
vote
2answers
161 views

How can we implement timer while receiving data in socket programing in c

I have gone through the different questions, which were asked related to timer. And it seams my code should work. But it is not working when timeout occur while receiving the data on a socket. I have ...
0
votes
4answers
783 views

Calculation time elapsed by a particular function in C program

I have a code in which i want to calculate the time taken by two sorting algorithms merge sort and quick sort to sort N numbers in microseconds or more precise. The two times thus calculated will then ...
0
votes
2answers
1k views

timers in linux in c [duplicate]

Possible Duplicate: Loops/timers in C I've been reading about timers for the last 3 days and I'm unable to find anything useful, I'm trying to understand it in real example, can somebody ...
1
vote
1answer
104 views

Why do I get a negative value when using timer MACRO based on clock()? [closed]

The macro is like this: #define MAX 10000000 #define CNT 1000000 #define TIMER_INIT \ clock_t starttime, endtime; \ #define TIMER(txt, process) \ starttime ...
0
votes
1answer
159 views

timer_settime fails even though all members of the itimerspec are set

So, this code was working just fine until recently, when we decided to move it to a Lubuntu 12.04 system. The call to timer_settime returns EINVAL, and running it under gdb I've confirmed that all of ...
0
votes
1answer
75 views

itimer expiration

I was using a periodic timer and taking times between when two SIGALRM signals are received. what I observed was that itimer might expires a little before or little after the time I set. e.g. if I set ...
1
vote
1answer
70 views

How to get the number of timers in a process?

I'm having exactly the same problem described here: timer_create() : -1 EAGAIN (Resource temporarily unavailable) in short, some process is reserving a lot of timers via timer_create but never ...
0
votes
0answers
176 views

timerfd - read: Resource temporarily unavailable

With the below code i'm able to call a function periodically every 5 seconds for 5 times. EDIT On changing the timerfd_create to timerfd_create( CLOCK_REALTIME , TFD_NONBLOCK); I face read: ...
1
vote
2answers
394 views

Linux timerfd,Calling a function every x seconds without blocking the code execution

Need to call a function every X(say 5) seconds and the below code does it . But its blocking the execution of code. As i want it to work like setitimer , where i can say call a function every 5 sec ...
0
votes
2answers
242 views

timer_create causing segmentation fault on i386 system, but not x86_64 system(linux)

I'm having an odd issue with this timer call. It works on my test system (x64), but when I load it into the target system, running i386 linux and compile there, it compiles fine but throws a ...
0
votes
3answers
106 views

Zero - based index

Does anyone know what this means param[in] timer /*The zero-based index of the timer. * param[in] delay_us /*The time to delay for, in microseconds. */ void ...
0
votes
0answers
98 views

Calculating timer delay imposed by activate/deactivate

Hi I have the following struct typedef struct _myTmr{ int tmrNum; int expirationCount; int expirationArray[SIZE]; int activeCount; int activeArray[SIZE]; int inactiveCount; ...
2
votes
2answers
347 views

Install timer/clock ISR on Windows - Asynchronous call in a single threaded environment

I'm refining some code which simulated a context-switching scheduler on x86 Windows systems. The program compiles on Windows XP (Edit: probably not Windows 7) with some ancient Borland C compiler, and ...

1 2 3 4