- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经使用“kthread_run”创建并启动了一个内核线程。
task1 = kthread_run(flash, NULL, "LED_thread");
我基本上必须以 4 种不同的模式以不同的开关时间闪烁 LED。我为此使用“msleep”。例如,如果在一个模式中,关闭时间为 10 秒,我关闭 LED,然后使用“msleep(10000)”。现在的问题是,如果模式是从用户空间更改的,那么模式只有在 10 秒的延迟完成后才会更改。
为了解决这个问题,我启动了第二个线程来监视 LED 的模式,一旦它看到模式的变化,它就会尝试使用“wake_up_process(task1)”唤醒第一个线程
但这不会唤醒第一个线程。
所以我的问题是:
1.wake_up_process 唤醒处于 sleep 状态的线程(远离运行队列)?
2. 如果没有,是否还有其他方法可以实现。
提前致谢
斯里克
在我的“flash”线程函数中,我有
更新:
@克雷格 ,这是您在单个线程中实现整个事情的一个很好的例子。在我看来,线程占用了大量的 cpu 周期,因此最好使用尽可能少的线程。你同意吗?
除了避免其他线程的示例之外,替代方法是:
1. 在驱动程序中使用 ioctl 并使用此 ioctl 而不是我正在使用的 sysfs 属性从用户空间设置模式,并在收到 ioctl 命令时将信号发送到工作线程以唤醒它。
2.在mode sysfs属性的store函数中发送信号唤醒工作线程(驱动中的函数,当在用户空间设置mode时会调用该函数)
最佳答案
一种方法是使用 msleep_interruptible
而不是 msleep
在线程 A 中。当然不知道,但您可能必须让线程 B 通过发送信号而不是 wake_up_process
来唤醒.试试看。
您可能需要一些互锁(例如自旋锁)来防止线程 B 在线程 A 已经唤醒 [并且已经看到闪烁类型更改] 之后发送信号的竞争条件。
或者,线程 A 可以记住旧类型,如果没有变化,则继续剩余的 sleep (这可以补偿无需锁定的竞争)
这是每个的内核代码:
/**
* msleep - sleep safely even with waitqueue interruptions
* @msecs: Time in milliseconds to sleep for
*/
void msleep(unsigned int msecs)
{
unsigned long timeout = msecs_to_jiffies(msecs) + 1;
while (timeout)
timeout = schedule_timeout_uninterruptible(timeout);
}
EXPORT_SYMBOL(msleep);
/**
* msleep_interruptible - sleep waiting for signals
* @msecs: Time in milliseconds to sleep for
*/
unsigned long msleep_interruptible(unsigned int msecs)
{
unsigned long timeout = msecs_to_jiffies(msecs) + 1;
while (timeout && !signal_pending(current))
timeout = schedule_timeout_interruptible(timeout);
return jiffies_to_msecs(timeout);
}
EXPORT_SYMBOL(msleep_interruptible);
Thanks for pointing to the possible race condition as well. I will try with semaphores/mutexes and see
/dev/whatever
或
/proc/whatever
)并写入全局[可能在“私有(private)”数据结构内],则可能没有必要。您可能必须使用原子提取/存储或 CAS,但将其标记为
volatile
可能就足够了。这是因为 B 是 [唯一] 作家,而 A 是 [唯一] 读者。
As far as sending signals in kernel space, can we do that? i thought signals are only for userspace. Could you give me an example if that is not the case.
msleep_interruptible
完全存在,它会寻找待处理的信号,这就是 QED。
allow_signal
中的评论自 2003 年的补丁以来一直存在:
/*
* Let kernel threads use this to say that they allow a certain signal.
* Must not be used if kthread was cloned with CLONE_SIGHAND.
*/
int allow_signal(int sig)
{
if (!valid_signal(sig) || sig < 1)
return -EINVAL;
spin_lock_irq(¤t->sighand->siglock);
/* This is only needed for daemonize()'ed kthreads */
sigdelset(¤t->blocked, sig);
/*
* Kernel threads handle their own signals. Let the signal code
* know it'll be handled, so that they don't get converted to
* SIGKILL or just silently dropped.
*/
current->sighand->action[(sig)-1].sa.sa_handler = (void __user *)2;
recalc_sigpending();
spin_unlock_irq(¤t->sighand->siglock);
return 0;
}
EXPORT_SYMBOL(allow_signal);
int disallow_signal(int sig)
{
if (!valid_signal(sig) || sig < 1)
return -EINVAL;
spin_lock_irq(¤t->sighand->siglock);
current->sighand->action[(sig)-1].sa.sa_handler = SIG_IGN;
recalc_sigpending();
spin_unlock_irq(¤t->sighand->siglock);
return 0;
}
EXPORT_SYMBOL(disallow_signal);
do_send_sig_info
.使用一些无害的东西,比如
SIGUSR1
(或者您可能需要使用“RT”信号,因为它们已排队)。
msleep_interruptible
此后将始终立即返回]。
while (signal_pending(current)) {
siginfo_t info;
unsigned long signo;
signo = dequeue_signal_lock(current, ¤t->blocked, &info));
switch (signo) {
case SIGUSR1:
break;
}
}
The msleep_interruptible was not wakeable using
wake_up_process
, but only withsend_sig_info
. I thinkmsleep_interruptible
is nothing but :setstate(TASK_INTERRUPTIBLE)
andschedule()
with delay, so i had expectedwake_up_process
to wakeup the thread sleeping withmsleep_interruptible
.
do_send_sig_info
)。有时这只是反复试验。我可能尝试过
wake_up_process
, 也。但是,当这不起作用时,我会开始环顾四周 [通过查看
msleep*
代码]。
But neverthless it would be interesting to understand if it is possible to implement that in a single thread.
My blink thread should set LED on for a second
blink_interval_on
and depending on the mode it is in, has to set LED off after the 1 second for about 10 seconds or 1 second.
blink_interval_off
If we implement it in a single thread, polling will be delayed by those 10 seconds right?
msleep
的值。不必是整个间隔(例如
blink_interval_*
),但可以是较小的固定间隔。我们称之为
sleep_fixed
.
sleep_fixed
] ],并在间隔用完时翻转 LED 状态。也就是说,我们手动跟踪完整的
msleep
曾经为我们做的。
Can you give me an example for that.
// NOTE: all times are in milliseconds
int blink_interval_on; // LED "on" interval
int blink_interval_off; // LED "off" interval
int blink_interval_remaining; // time remaining in current interval
int curmode; // current blink mode
int blink_on_list[2] = { 1000, 1000 };
int blink_off_list[2] = { 1000, 10000 };
int sleep_fixed; // small sleep value
// set_led_on -- set LED on or off
void
set_led_on(int onflg)
{
}
// msleep -- sleep for specified number of milliseconds
void
msleep(int ms)
{
}
// getnewmode -- get desired blink mode
// RETURNS: 0=1 second, 1=10 seconds, etc (-1=stop)
int
getnewmode(void)
{
int newmode;
// do whatever is necessary, as you're doing now ...
newmode = 0;
return newmode;
}
// ledloop -- main thread for single thread case
void
ledloop(void)
{
int newmode;
int sleep_fixed;
int curstate;
int sleep_current;
// force an initial state change
curmode = -2;
// this is our "good enough" interval
sleep_fixed = 10;
while (1) {
// look for blink mode changes
newmode = getnewmode();
if (newmode < 0)
break;
// got a mode change
// force a change at the bottom
if (curmode != newmode) {
curstate = 0;
curmode = newmode;
blink_interval_remaining = 0;
}
// set up current sleep interval
sleep_current = sleep_fixed;
if (sleep_current > blink_interval_remaining)
sleep_current = blink_interval_remaining;
// do a sleep
// NOTE: because the sleep is so short, we can use the simple msleep
// this is the "good enough" way ...
if (sleep_current > 0) {
msleep(sleep_current);
blink_interval_remaining -= sleep_current;
}
// flip the LED state at interval end
if (blink_interval_remaining <= 0) {
curstate = ! curstate;
set_led_on(curstate);
// set new interval
if (curstate)
blink_interval_remaining = blink_on_list[curmode];
else
blink_interval_remaining = blink_off_list[curmode];
}
}
}
关于linux-kernel - 使用 msleep 唤醒处于 sleep 状态的内核线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36344295/
我在网上搜索但没有找到任何合适的文章解释如何使用 javascript 使用 WCF 服务,尤其是 WebScriptEndpoint。 任何人都可以对此给出任何指导吗? 谢谢 最佳答案 这是一篇关于
我正在编写一个将运行 Linux 命令的 C 程序,例如: cat/etc/passwd | grep 列表 |剪切-c 1-5 我没有任何结果 *这里 parent 等待第一个 child (chi
所以我正在尝试处理文件上传,然后将该文件作为二进制文件存储到数据库中。在我存储它之后,我尝试在给定的 URL 上提供文件。我似乎找不到适合这里的方法。我需要使用数据库,因为我使用 Google 应用引
我正在尝试制作一个宏,将下面的公式添加到单元格中,然后将其拖到整个列中并在 H 列中复制相同的公式 我想在 F 和 H 列中输入公式的数据 Range("F1").formula = "=IF(ISE
问题类似于this one ,但我想使用 OperatorPrecedenceParser 解析带有函数应用程序的表达式在 FParsec . 这是我的 AST: type Expression =
我想通过使用 sequelize 和 node.js 将这个查询更改为代码取决于在哪里 select COUNT(gender) as genderCount from customers where
我正在使用GNU bash,版本5.0.3(1)-发行版(x86_64-pc-linux-gnu),我想知道为什么简单的赋值语句会出现语法错误: #/bin/bash var1=/tmp
这里,为什么我的代码在 IE 中不起作用。我的代码适用于所有浏览器。没有问题。但是当我在 IE 上运行我的项目时,它发现错误。 而且我的 jquery 类和 insertadjacentHTMl 也不
我正在尝试更改标签的innerHTML。我无权访问该表单,因此无法编辑 HTML。标签具有的唯一标识符是“for”属性。 这是输入和标签的结构:
我有一个页面,我可以在其中返回用户帖子,可以使用一些 jquery 代码对这些帖子进行即时评论,在发布新评论后,我在帖子下插入新评论以及删除 按钮。问题是 Delete 按钮在新插入的元素上不起作用,
我有一个大约有 20 列的“管道分隔”文件。我只想使用 sha1sum 散列第一列,它是一个数字,如帐号,并按原样返回其余列。 使用 awk 或 sed 执行此操作的最佳方法是什么? Accounti
我需要将以下内容插入到我的表中...我的用户表有五列 id、用户名、密码、名称、条目。 (我还没有提交任何东西到条目中,我稍后会使用 php 来做)但由于某种原因我不断收到这个错误:#1054 - U
所以我试图有一个输入字段,我可以在其中输入任何字符,但然后将输入的值小写,删除任何非字母数字字符,留下“。”而不是空格。 例如,如果我输入: 地球的 70% 是水,-!*#$^^ & 30% 土地 输
我正在尝试做一些我认为非常简单的事情,但出于某种原因我没有得到想要的结果?我是 javascript 的新手,但对 java 有经验,所以我相信我没有使用某种正确的规则。 这是一个获取输入值、检查选择
我想使用 angularjs 从 mysql 数据库加载数据。 这就是应用程序的工作原理;用户登录,他们的用户名存储在 cookie 中。该用户名显示在主页上 我想获取这个值并通过 angularjs
我正在使用 autoLayout,我想在 UITableViewCell 上放置一个 UIlabel,它应该始终位于单元格的右侧和右侧的中心。 这就是我想要实现的目标 所以在这里你可以看到我正在谈论的
我需要与 MySql 等效的 elasticsearch 查询。我的 sql 查询: SELECT DISTINCT t.product_id AS id FROM tbl_sup_price t
我正在实现代码以使用 JSON。 func setup() { if let flickrURL = NSURL(string: "https://api.flickr.com/
我尝试使用for循环声明变量,然后测试cols和rols是否相同。如果是,它将运行递归函数。但是,我在 javascript 中执行 do 时遇到问题。有人可以帮忙吗? 现在,在比较 col.1 和
我举了一个我正在处理的问题的简短示例。 HTML代码: 1 2 3 CSS 代码: .BB a:hover{ color: #000; } .BB > li:after {
我是一名优秀的程序员,十分优秀!