- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
/data/temp&");我想要 pid 而不使用 ps 命令-6ren"> /data/temp&");我想要 pid 而不使用 ps 命令-我在我的 C 代码中使用此调用 system("logcat -v time >/data/temp&");我想要在不使用 ps 命令的情况下创建的进程的 pid,无论如何这都没有帮助,因为它不会启动-6ren">
我在我的 C 代码中使用此调用 system("logcat -v time >/data/temp&");
我想要在不使用 ps 命令的情况下创建的进程的 pid,无论如何这都没有帮助,因为它不会启动名为 kmsg 的进程。system("echo $!>/data/pid_file");
也没有帮助,它只是将空值插入到/data/pid_file 中。谁能给我一种方法来组合这两个命令。我已经使用了多种方法来做到这一点,所以请尝试给出一种有效的方法。
最佳答案
我建议您自己fork
您的流程。然后你就会知道pid。在此示例中,child_pid
将保存您所需的 pid。
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
-
pid_t child_pid = fork();
if (!child_pid) {
// child goes here
char * args[] = {"logcat", "-v", "time", NULL};
int fd = open("/data/temp", O_WRONLY | O_CREAT | O_TRUNC);
if (!fd) {
perror("open");
exit(EXIT_FAILURE);
}
// map fd onto stdout
dup2(fd, 1);
// You will probably want to disconnect stdin and stderr
// So we will redircet them to /dev/null
fd = open("/dev/null", O_RDWR);
if (!fd) {
perror("open");
exit(EXIT_FAILURE);
}
// disable stdin
dup2(fd, 0);
// disable stderr
dup2(fd, 2);
execvp(*args, args);
// will only return if exec fails for whatever reason
// for instance file not found
perror("exec");
exit(EXIT_FAILURE);
}
// parent process continues here
if(child_pid == -1) {
// can happen if you have reached process limit (ulimit -u) or are out of memory
perror("fork");
}
关于android - 我正在执行系统 ("kmsg -v time >/data/temp&");我想要 pid 而不使用 ps 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17430704/
for x in [temp for temp in xlist if temp xmax: continue 会起作用。 (你的 for 循环的其余部分是做什么的?)如果它可以只使用一个 list-
我正在学习 C 的 udemy 类(class),发现这个问题不是都声明是相同的吗?如果是,为什么答案不同 源代码: #include void swap(int *a, int *b){
#include #include void test( int * ); struct node { int data; struct node * next; }; int m
所以我在练习一些链表问题,但我一直把假设弄混了//这是一个只有头部的单向链表 // what is the difference between ListNode temp = head; while
我有一个 Windows Server 2008 32 位,当我输入 %temp% 时,它会将我带到 ..AppData\Local\Temp\1\或 ..AppData\Local\Temp\2 而
在学习链表编码的过程中,我遇到了这两个东西,无法理解它们之间的区别,让我感到困惑。我一直在学习的这本书在我们在链表末尾添加新节点的部分解释了“temp=*q”。 So, if the list is
谁能说出下面代码的内部过程 //instead of 1 it displays -1 最佳答案 echo ~$temp; ^bitwise not operator 假设 32 位
我想知道hadoop.tmp.dir和mapred.temp.dir有什么区别,而且mapred.temp.dir [不建议使用]与mapreduce.cluster.temp.dir有何不同 最佳答
我的输入来自使用 DataInputSteam 的 socket,并且因为我可以将多个不同的字符串值全部分配给同一个 clientDayOfWeek 字符串,我无法弄清楚如何将进入同一个 ArrayL
在做一些基于二叉搜索树的问题时......我在函数调用中有点困惑: void find(node* root,node*& temp) { blah blah... } int main()
为什么下面的代码不起作用?据我所知,当 temp 达到 NULL 时,(new)ing 它应该创建一个 temp 指向它的新节点。奇怪的是,将 while 条件更改为 temp->next!=NULL
我有一个 JMenuItem 实例(比如说 TEMP)。我想知道添加了 TEMP 的 JMenu 的名称是什么。我该怎么做? 最佳答案 您可以尝试以下代码来获取给定 JMenuItem 的 JMenu
我得到了相同的结果,有什么区别?哪个更好?temp 是一个 int,从 reader.read() 读取 System.out.print((char)temp); System.out.print(
我试图通过以下示例中的 temp 变量检查“temp = ( volatile 无符号短*) add ”中的添加值: main() { unsigned short add = 0x01;
我有一个网络作业,在 %temp% 文件夹中写入一些数据,该文件夹映射到 d:\local\temp。 当我在 Azure 门户上使用控制台工具时,数据就在那里,位于 d:\local\temp 上。
我有下面的内容,用作启动 powershell 的批处理文件(太长,无法详细介绍,但它在另一个脚本中使用)。 无论如何,我注意到 %systemroot%\temp 和 %systemroot% 不起
我尝试在这里和整个 Internet 上进行研究,但由于伪代码编写相当多样化,许多人使用不同的符号来表示不同的事物,我找不到任何可能符合我的问题的内容。 给定以下内容:n 阶数组 A(不一定已经排序)
Replace Temp with Query 重构方法现在被广泛推荐,但是似乎效率很低, yield 很小。 Martin Fowler 网站的方法给出了以下示例: 将表达式提取到方法中。用表达式替
当我们有什么操作需要使用到命令的就可以打开运行,然后直接向里面输入命令就可以完成一些操作。因为有用户想知道%temp%输入命令行是什么意思,所以小编就来为大家解答了这个命令的意思,它一般是用于清除垃
我知道之前有人问过这方面的变体(例如 https://groups.google.com/forum/#!topic/snakemake/4kslVBX2kew ),但我没有看到明确的解决方案。 如果
我是一名优秀的程序员,十分优秀!