- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在带有回调的异步模式下使用 ALSA (snd_async_add_pcm_handler())。每个 ALSA 的回调都是从 SIGIO 信号处理程序调用的。每个回调调用我的函数getCurrentTimeMs():
// Return current milliseconds (don't care - local time or UTC).
long long getCurrentTimeMs(void)
{
std::cout << "+"; std::cout.flush();
long long ret = 0;
#define Z
#ifdef Z
struct timespec ts;
clock_gettime( CLOCK_MONOTONIC, &ts);
ret = ts.tv_sec * 1000;
ret += ts.tv_nsec / 1000000;
#else
boost::posix_time::ptime now = boost::posix_time::microsec_clock::local_time();
std::cout << "."; std::cout.flush();
boost::posix_time::ptime epoch_start(boost::gregorian::date(1970,1,1));
std::cout << "."; std::cout.flush();
boost::posix_time::time_duration dur = now - epoch_start;
std::cout << "."; std::cout.flush();
ret = dur.total_milliseconds();
#endif
std::cout << "-"; std::cout.flush();
return ret;
}
如果我评论#define Z,则使用 boost 。在“boost 模式”中,应用程序在音频播放开始后经过不可预测的时间后挂起。 strace 显示应用程序挂起:
write(1, "+"..., 1) = 1 gettimeofday({1332627252, 660534}, NULL) = 0 futex(0xb68dba4c, FUTEX_WAIT_PRIVATE, 2, NULL <unfinished ...>
但是 0xb68dba4c 在所有跟踪日志中只出现了 2...3 次。 futex(0xb68dba4c ... 不是每次调用 getCurrentTimeMs() 时都会发生的事情。但是当它发生时,一切都会挂起,并且只会在 gettimeofday 之后发生;我在控制台上看到“+.”,然后 futex 发生。但在此之前,应用程序可以播放大量声音,每秒在每个回调上调用 getCurrentTimeMs() 50 次. 好神秘...
#define Z 使用了我的代码。在这种情况下,该应用程序运行良好 - 播放千兆字节的 WAV 文件而没有挂起。
应用程序有 2 个线程通过 boost::threadpool 运行并且都使用 getCurrentTimeMs();假设我有一些死锁错误;但我不知道 #define Z 会如何影响它。
编辑:我的问题是这样回答的,我接受这个答案:
1) http://permalink.gmane.org/gmane.linux.alsa.devel/96282
2) http://answerpot.com/showthread.php?3448138-ALSA+async+callback+re-enter+and+DEADLOCK .
最佳答案
如果这对我来说是这样,那么有两种异步调度需要考虑:异步线程和异步中断(“信号”)。线程彼此独立运行,除非它们显式同步;信号是异步调度的,但会抢占并阻塞它们传送到的任何线程。它看起来非常像您正在调用的 boost 函数或 iostream 通过锁定实现线程安全,这使得它们在中断处理程序中调用_un_safe,因为处理程序抢占的线程很可能已经持有锁。
您可能会做的一件事是安排将所有信号传递给一个什么都不做的线程——也许在启动时立即启动一个线程并让您的主线代码在那里运行,而将原来的主线程专用于信号处理.
关于c++ - ALSA 回调(SIGIO 处理程序)有时会在 boost::posix_time::microsec_clock::local_time() 中的某处挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9856839/
我试图在整个互联网上找到答案。我需要以微秒为单位的秒级时间戳。 boost::posix_time::ptime now = boost::posix_time::microsec_clock::lo
我正在尝试使用 C++ Boost 库 v1.41 的日期/时间功能。 (注意:这是 Linux,不是 Windows;g++ v4.4.7) 代码: #include using boost::p
#include #include "boost/date_time/posix_time/posix_time.hpp" int main(int argc, char** argv) { b
我有以下代码: long long unsigned int GetCurrentTimestamp() { LARGE_INTEGER res; QueryPerformanceCoun
我想使用 Boost 获取毫秒精度的时间。 (精度不需要毫秒,接近即可。) 引用Local time with milliseconds , 等,说明应该使用微秒时钟: boost::posix_ti
我在 Boost C++ 日期时间库中发现了一个奇怪的结果。 microsec_clock 和 second_clock 之间存在不一致,我不明白为什么会这样。我使用的是 Windows XP 32
我在带有回调的异步模式下使用 ALSA (snd_async_add_pcm_handler())。每个 ALSA 的回调都是从 SIGIO 信号处理程序调用的。每个回调调用我的函数getCurren
我是一名优秀的程序员,十分优秀!