All of lore.kernel.org
 help / color / mirror / Atom feed
* timer_create not working in 2.6.5
@ 2004-08-28  7:18 Amol
  0 siblings, 0 replies; only message in thread
From: Amol @ 2004-08-28  7:18 UTC (permalink / raw)
  To: linux-kernel

Hi,
 My system has fedora-core-2. I tried to run this small program to
create a posix time but it seems it is giving me wrong timer-id.. some
garbage number. Finally program segfaults in timer_settime( not included
here)

Any clues ?
Please CC me
Amol

--------------

#include <time.h>
#include <signal.h>
#include <unistd.h>

void timer_handler(int signo, siginfo_t *info, void *context)
{
        printf("got signal..\n");
}

int main(){
        struct timespec ts, tm, sleep;
        sigset_t mask;
        siginfo_t info;
        struct sigevent sigev;
        struct sigaction sa;
        struct itimerspec ival;
        timer_t tid;

        sigemptyset(&mask);
        sigprocmask(SIG_SETMASK, &mask, NULL);

        sa.sa_flags = SA_SIGINFO;
        sigemptyset(&sa.sa_mask);
        sa.sa_sigaction = timer_handler;

        if (sigaction(SIGRTMIN, &sa, NULL) == -1) {
                perror("sigaction failed");
                return -1;
        }

        sigev.sigev_notify = SIGEV_SIGNAL;
        sigev.sigev_signo = SIGRTMIN;
        sigev.sigev_value.sival_int = 1;

        if (timer_create(CLOCK_MONOTONIC, &sigev, &tid) == -1){
                perror("timer_create");
                return -1;
        }
        printf("timer-id = %d\n", tid);
}



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-08-28  7:23 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-28  7:18 timer_create not working in 2.6.5 Amol

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.