- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
OpenJDK 实现(linux 部分)大量使用信号来中断在 native IO 操作上阻塞的另一个线程。基本思想是,向目标线程发送唤醒信号将导致阻塞 IO 调用返回 EINTR。
一个例子是,异步关闭使用的 fd 时中断阻塞的线程:
static int closefd(int fd1, int fd2) {
...
/*
* Send a wakeup signal to all threads blocked on this
* file descriptor.
*/
threadEntry_t *curr = fdEntry->threads;
while (curr != NULL) {
curr->intr = 1;
pthread_kill( curr->thr, sigWakeup );
curr = curr->next;
}
...
}
另一个例子是中断一个套接字 channel :
protected void implCloseSelectableChannel() throws IOException {
...
// Signal native threads, if needed. If a target thread is not
// currently blocked in an I/O operation then no harm is done since
// the signal handler doesn't actually do anything.
//
if (readerThread != 0)
NativeThread.signal(readerThread);
if (writerThread != 0)
NativeThread.signal(writerThread);
...
}
但是,可能存在被阻塞的线程将错过信号并且不会被中断的竞争。
为了演示,我写了一小段测试代码:
#include <stdio.h>
#include <signal.h>
#include <unistd.h>
void handler(int sig) {
printf("singal\n");
}
int main() {
// set-up an interrupting signal handler
signal(SIGINT, handler);
// not blocking operation, prepare to block
// if the wake-up signal arrived during this
// operation. we'll miss it.
for (int i = 0; i < 2100000000; ++i) {
int j = i * i;
}
printf("not blocking operation done\n");
// blocking io operation
unsigned int remain = sleep(10);
printf("blocking io operation done, remain %u\n", remain);
return 0;
}
如果唤醒信号刚好在阻塞线程进入内核等待IO之前到达,例如执行glibc的一些包装代码,则阻塞线程将永远错过这个信号而无法被中断。
信号在 IO 之前到达时的输出如下所示:
./a.out
^Csingal
^Csingal
^Csingal
^Csingal
^Csingal
not blocking operation done
blocking io operation done, remain 0
以及信号被IO阻塞后到达时的输出:
./a.out
not blocking operation done
^Csingal
blocking io operation done, remain 6
这是 JDK 错误还是我遗漏了什么?
最佳答案
“这是 JDK 错误还是我遗漏了什么?”
您错过了重要的一点:错误是规范与实现之间的差异。 Java 规范对 linux 信号只字未提,这意味着它可以以任何方式对它们使用react,这不能被视为错误。
要证明 JDK 中存在错误,您必须在 JVM spec 中找到一个断言你认为违反了,并创建一个测试来证明 JVM 的行为与该断言规定的不同。由于 JVM 规范中的所有断言都是用字节码表示的,因此测试必须用 Java(或任何其他 JVM 语言)编写并编译为类文件。
关于java - JDK问题: interrupt another thread blocked on an IO operation with signal may fail,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53691013/
来自Unix&Linux Stack Exchange的 This question was migrated,因为可以在Stack Overflow上进行回答。
所以我有这段代码(部分取自 python 文档): import signal def handler(signum, frame): print 'Signal handler called
是否可以在信号块中调用用户定义的方法? method my-method ( ... ) { signal(SIGTERM,SIGINT,SIGQUIT,SIGHUP).tap( -> $si
我正在研究一个类的概念性伪代码信号量分配。 我想知道是否可以在某个进程调用 wait() 之前在信号量上调用 signal()。例如: Shared data: Semaphore x = 0; Pr
我正在为远程调试注册一个信号: signal.signal(signal.SIGUSR1, lambda x,y: remote_debug(x, y, emp_id)) 虽然通常非常快,但日志语句显
关于 PySide signals and slots page它说:“信号是实例拥有的运行时对象,它们不是类属性”。显然,QObject 构造函数在 Signals 的类属性中查找并将它们复制到对象
关于 PySide signals and slots page它说:“信号是实例拥有的运行时对象,它们不是类属性”。显然, QObject 构造函数查找 Signals 的类属性并将它们复制到对象实
关于PySide signals and slots page它说:“信号是实例拥有的运行时对象,它们不是类属性”。显然,QObject 构造函数在类属性中查找信号并将它们复制到对象实例。我的测试程序
使用 ReactiveCocoa,我如何从重复信号中链接信号? 我想做这样的事情:每 5 秒,我运行一次网络请求。 为此,我创建了一个重复信号 RACSignal *each5SecondSignal
正如标题中所写 - “信号和插槽”是一种简单的响应式(Reactive)编程方式吗? 最佳答案 Signals/Slots是 Observer Pattern 的实现. 来自维基 Reactive P
您好,我想知道信号声明如何在 VHDL 中真正起作用。它是否意味着延迟,因为它是内部信号?信号有内部存储器吗? 例子: Architecture SD_BEH of SD is signal C: s
我正在尝试编写一些代码来使用 python 执行一些数据包嗅探 使用 pyshark.I 有以下一段代码: import pyshark print('Pyshark demo') capture =
**披露 - 我是一名初学者 C 程序员,并不完全熟悉如何解释手册页,也不完全熟悉谈论 C 时正确的单词选择 - 对这个问题的任何编辑或澄清都是感谢。* 问题:我正在阅读有关 signal(7) 的手
我的应用程序运行完美,没有任何问题。但是当我尝试调试它时,android studio 卡住了。所以我收到消息“等待调试器”,然后该消息消失,接下来我在模拟器中只看到黑屏。 我也收到了消息 SIGNA
我在 Laravel 5.7 中使用 Snappy PDF 库。在本地一切正常,但在我的开发环境中出现此错误:该进程已收到信号“11”的信号。到现在为止,我找不到可以帮助我的解决方案。这是我在 Con
当我想在 linux 上激活 mongo 时,我得到了这个错误,它不会工作 $ sudo systemctl status mongod ● mongod.service - MongoDB 数据库服
我正在尝试设置函数超时,但我无法成功。 我运行来自 https://docs.python.org/3/library/signal.html?highlight=signal%20sigalrm#e
我在尝试使用 Phantomjs 和 Symfony 的 Process 和 Reposonse 文件创建 PDF 文档时遇到此错误。 这是我收到的错误信息 fatal error :未捕获的异常 '
我正在尝试调试一个复杂的 Perl 应用程序,该应用程序以错误消息“收到信号 SIGCHLD,但未设置信号处理程序”而终止。我知道它来自 Perl 解释器本身,特别是来自文件 mg.c它不能被捕获。但
我有以下代码,它按预期工作: import signal def printer(signum, frame): print("hi!") signal.signal(signal.SIGAL
我是一名优秀的程序员,十分优秀!