调用timer_create()的新线程

时间:2011-02-07 21:58:11

标签: c++ c linux multithreading

我正在调查调用函数timer_create()时如何获取线程ID。 我观察到每次调用timer_create()时,都会创建一个新线程(主进程的子线程)。我用ps -eL | grep

验证了这一点

我需要在我的程序中使用timer_create获得ps -eL显示的相同TID(子线程ID)。 从下面的代码:如何在我的程序中获得TID 18018?

我研究了所有帖子,每个帖子都提到在调用通知函数时创建了一个新线程而没有调用timer_create()。

非常感谢你的帮助!

代码:

SLGTRACER_DEFINE(testMain, "testMain");


timer_t audit_timer1;

void timeoutHandler(sigval_t info)
{
    slgInfo(testMain, "timeoutHandler invoked");

    slgInfo(testMain, "gettid() = %lu TESTMAIN", syscall(SYS_gettid));
    slgInfo(testMain, "getpid() = %d TESTMAIN", getpid());

}

int main(void)
{
    slgInfo(testMain, "testMain Invoked");


    struct sigevent evp1;
    evp1.sigev_notify = SIGEV_THREAD;
    evp1.sigev_value.sival_ptr = &audit_timer1;
    evp1.sigev_notify_function = timeoutHandler;
    evp1.sigev_notify_attributes = NULL;

    const int ERROR_BUFFER_SIZE = 50;


       slgInfo(testMain, "Before FIRST timer_create");
       sleep(30);


    // Create timer thread
    if (timer_create(CLOCK_REALTIME, &evp1, &audit_timer1) != 0)
    {
       // Character buffer for storing error message.
        char     errBuff[ERROR_BUFFER_SIZE];

        memset(errBuff, 0, ERROR_BUFFER_SIZE);

        slgError(testMain,
                    "timer_start create failed. Error = %s",
                    strerror_r(errno, errBuff, ERROR_BUFFER_SIZE));

        timer_delete(audit_timer1);
        bzero(&audit_timer1, sizeof(audit_timer1));
    }


       slgInfo(testMain, "After FIRST timer_create");
       sleep(30); 

    return 0;

}

bash-3.1# ps -eL|grep testM
16651 16651 pts/0    00:00:00 testMain
16651 18018 pts/0    00:00:00 testMain 
child thread with ID created by timer_create() = 18018

1 个答案:

答案 0 :(得分:0)

未指定在调用超时处理程序之前是否存在线程。当然,符合要求的实现可以推迟创建线程,直到计时器到期为止。看起来像pids的数字线程id的存在也是一个实现细节,你不应该使用它。

你能解释一下你想要完成的事吗?当然有更好的方法......