- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
下面的程序产生这个输出:
$ ./test_condvar 9000
1343868189.623067126 1343868198.623067126 FIRST
1343868197.623132345 1343868206.623132345 TIMEOUT
1343868205.623190120 1343868214.623190120 TIMEOUT
1343868213.623248184 1343868222.623248184 TIMEOUT
1343868221.623311549 1343868230.623311549 TIMEOUT
1343868229.623369718 1343868238.623369718 TIMEOUT
1343868237.623428856 1343868246.623428856 TIMEOUT
请注意,跨行读取显示预期的 9 秒的时间增量,但向下读取列显示 pthread_cond_timedwait
在 8 秒内返回 ETIMEDOUT。
pthread 库是 glibc 2.12。运行红帽 EL6。 uname -a
显示 2.6.32-131.12.1.el6.x86_64 #1 SMP Tue Aug 23 11:13:45 CDT 2011 x86_64 x86_64 x86_64 GNU/Linux
看起来 pthread_cond_timedwait
依赖于 lll_futex_timed_wait
的超时行为。
关于在其他地方寻找解释的任何想法?
#include <time.h>
#include <sys/time.h>
#include <pthread.h>
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
int main ( int argc, char *argv[] )
{
pthread_mutexattr_t mtx_attr;
pthread_mutex_t mtx;
pthread_condattr_t cond_attr;
pthread_cond_t cond;
int milliseconds;
const char *res = "FIRST";
if ( argc < 2 )
{
fputs ( "must specify interval in milliseconds", stderr );
exit ( EXIT_FAILURE );
}
milliseconds = atoi ( argv[1] );
pthread_mutexattr_init ( &mtx_attr );
pthread_mutexattr_settype ( &mtx_attr, PTHREAD_MUTEX_NORMAL );
pthread_mutexattr_setpshared ( &mtx_attr, PTHREAD_PROCESS_PRIVATE );
pthread_mutex_init ( &mtx, &mtx_attr );
pthread_mutexattr_destroy ( &mtx_attr );
#ifdef USE_CONDATTR
pthread_condattr_init ( &cond_attr );
if ( pthread_condattr_setclock ( &cond_attr, CLOCK_REALTIME ) != 0 )
{
fputs ( "pthread_condattr_setclock failed", stderr );
exit ( EXIT_FAILURE );
}
pthread_cond_init ( &cond, &cond_attr );
pthread_condattr_destroy ( &cond_attr );
#else
pthread_cond_init ( &cond, NULL );
#endif
for (;;)
{
struct timespec now, ts;
clock_gettime ( CLOCK_REALTIME, &now );
ts.tv_sec = now.tv_sec + milliseconds / 1000;
ts.tv_nsec = now.tv_nsec + (milliseconds % 1000) * 1000000;
if (ts.tv_nsec > 1000000000)
{
ts.tv_nsec -= 1000000000;
++ts.tv_sec;
}
printf ( "%ld.%09ld %ld.%09ld %s\n", now.tv_sec, now.tv_nsec,
ts.tv_sec, ts.tv_nsec, res );
pthread_mutex_lock ( &mtx );
if ( pthread_cond_timedwait ( &cond, &mtx, &ts ) == ETIMEDOUT )
res = "TIMEOUT";
else
res = "OTHER";
pthread_mutex_unlock ( &mtx );
}
}
最佳答案
有一个Linux kernel bug由今年 7 月 1 日插入闰秒触发,这导致 futexes 过早一秒过期,直到机器重新启动或您运行解决方法:
# date -s "`date`"
听起来你已经被那个咬伤了。
关于linux - pthread_cond_timedwait 提前一秒返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11769687/
void wait(int timeInMs) { struct timespec timeToWait; timeToWait.tv_sec = 5; timeToWait.
void wait(int timeInMs) { struct timespec timeToWait; timeToWait.tv_sec = 5; timeToWait.
线程调用pthread_cond_timedwait 并返回ETIMEDOUT 后,线程是否拥有互斥体? 我最初认为不,但看起来我们必须调用pthread_mutex_unlock,即使在pthrea
所以我试图了解 pthread_cond_timedwait() 是如何工作的,因为我在我的项目上进行同步时遇到了一些问题。这是我想出的代码,但它并没有像我想象的那样工作。我的目标是打印时间,等待 2
我在 pthread_cond_timedwait() 上遇到了一个奇怪的问题:根据 POSIX 规范,它是一个取消点。但是,当我在线程上调用 pthread_cancel() 时,它永远不会被取消!
下面的程序产生这个输出: $ ./test_condvar 9000 1343868189.623067126 1343868198.623067126 FIRST 1343868197.623132
我正在尝试将 pthread_cond_timedwait 用于毫秒 sleep 间隔,但我没有获得 sleep 持续时间。我的线程比我提到的睡得更多。下面是我的实现。如果我哪里错了,请告诉我。
我遇到了一个奇怪的问题。我有以下代码: dbg("condwait: timeout = %d, %d\n", abs_timeout->tv_sec, abs_timeout
据我了解,pthread_cond_timedwait 的使用方法是获取当前时间,然后计算如果条件未发出信号 pthread_cond_timedwait 应退出的绝对时间。 有没有一种简单的方法可以
我有这样一种情况,如果一个线程需要太多时间才能完成,我想取消它。为此,我使用第二个线程等待第一个线程完成,但不会超过几秒。 pthread_cond_timedwait() 函数似乎非常适合我的使用场
考虑以下完全符合 POSIX 标准的源代码: #include #include #include #include #include #include int main (int arg
我在极少数情况下看到 pthread_cond_timedwait() 返回 EINVAL 并导致我们的系统发生致命崩溃。我知道这意味着传入的参数之一必须无效,但是 mutex 或 cond 变量如何
我正在尝试使用 pthread_cond_timedwait 来等待超时,类似于 Java 的 wait(long timeout, int nanos)。我知道 Java 的 wait 使用相对超时
我将 pthread_cond_timedwait 与单片定时器一起使用。我想问一下我的示例中是否存在问题或原因是什么,有时 pthread_cond_timedwait 等待的时间超过指定的超时时间
我用谷歌找不到任何关于这方面的信息,所以我在这里发帖希望有人能提供帮助... 我的问题是 Windows pthread 函数 pthread_cond_timedwait()。当指示的时间过去后,该
这应该在一个循环(服务器)中工作,并将工作/查询委托(delegate)给一个有故障的库,这里由 longrun() 函数调用表示,给一个超时时间为 tmax=3s 的线程。我放置了同步变量,我试图等
我需要让一个线程等待直到任一个 超时已过,或者 一个变量被另一个线程改变 经过一些研究,我发现 pthreads 有 pthread_cond_timedwait,如果我要使用 pthreads,这在
我尝试在我的代码中实现 pthread 功能。不幸的是,我无法正确实现函数 pthread_cond_timedwait()。在 Linux 中一切正常。但在 Windows 中,此函数始终返回错误代
所以我搜索了关于堆栈溢出和其他资源的高低,但我无法理解与上述功能有关的一些事情。具体来说, 1)当pthread_cond_timedwait()因为定时器值用完而返回时,它如何自动重新获取互斥量。互
pthread_cond_timedwait 函数需要时间 timespec 结构中的绝对时间。 我应该使用什么时间函数来获取绝对时间。我在网上看到了很多例子,我发现几乎所有时间功能都被使用了。 (f
我是一名优秀的程序员,十分优秀!