- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
(警告 - 不是完美的英语!)
在拼贴画上,他们给了我一个任务,我苦苦挣扎了几个小时,却无法解决。 我在将数据从一个进程发送到另一个进程时遇到问题。 在下面的代码中,我将输入数据发送到子进程,但我没有从子进程接收到它。你们能帮忙吗?
程序描述:我的工作是从用户那里获取输入,使用管道将其发送到子进程,进行一些计算,然后将这些计算进一步发送到下一个进程。最后一个过程对传入的数据求和并将其分配给最终结果。更具体地说,第一个子进程计算麦克劳林级数的单项并将其发送给对其求和的进程。这是代码:
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string.h>
#include <math.h>
#include <sys/stat.h>
int mkfifo(const char *s, mode_t m) {
return 0;
}
int i = 1;
double FINAL_RESULT = 0 ;
double factorial(int N){
if(N==1)return 1.0;
return N*factorial(N - 1);
}
double Maclaurine(int i , double x , double eps){
double result;
result = (pow(x,(double)i) / (double)factorial(i));
if( result < eps) return 0;
return result;
}
void print(char * tab, int size){
printf("\n");
for( int i = 0; i < size ; i++){
printf("%c" , tab[i]);
}
printf("\n");
}
int main(){
int pd;
if(mkfifo("tmp/myfifo1", 0666) == -1){
printf("Failed to create myfifo2\n");
}
if(mkfifo("tmp/myfifo2", 0666) == -1){
printf("Failed to create myfifo2\n");
}
pd = open("tmp/myfifo1", O_WRONLY);
double x1,eps1;
printf("X Value : \n");
scanf("%lf", &x1);
printf("EPS Value : \n");
scanf("%lf", &eps1);
char tab1[128], tab2[128];
//converting to char*
sprintf(tab1,"%lf",x1);
sprintf(tab2,"%lf",eps1);
//printing to standard output
print(tab1, strlen(tab1));
print(tab2, strlen(tab2));
//creating new process
if(fork() == 0){
//creating another process
if(fork() == 0){
int pd3;
pd3 = open("tmp/myfifo2", O_RDONLY);
char tab5[128];
double x3;
//reading data from pipe , myfifo2
read(pd3,tab5,sizeof(tab5));
//converting char* to float
x3 = atof(tab5);
FINAL_RESULT += x3;
printf("\nCurrent result = %lf" , FINAL_RESULT);
}
int pd2;
//opening myfifo1 for reading
pd2 = open("tmp/myfifo1", O_RDONLY);
if(pd2 == - 1){
printf("\nFailed to open myfifo1 for reading!\n");
}
double x2, eps2;
char tab3[128], tab4[128];
//reading inputed parameters
read(pd2,tab3, sizeof(tab3) );
read(pd2,tab4, sizeof(tab4) );
//converting to floats
x2 = atof(tab3);
eps2 = atof(tab4);
printf("\nReceived initial data x=%f, eps = %f \n" , x2, eps2);
double singleTerm = 0;
int pd4;
char wyraz[128];
//opening myfifo2 for writing
pd4 = open("tmp/myfifo2", O_WRONLY);
if(pd4 == -1 ){
printf("\nfailed to open myfifo2\n");
}
do{
//calculate single term of Maclaurin series
singleTerm = Maclaurine(i,x2,eps2);
printf("\n%d. Series term = %lf\n", i,singleTerm);
sprintf(wyraz,"%lf",singleTerm);
if(write(pd4, wyraz, sizeof(wyraz)) == -1 ){
printf("\nfailed to send singleTerm to myfifo2\n");
}
i++;
//if its less than eps, loop ends
}while(singleTerm);
printf("\nFinal Result : %lf", FINAL_RESULT);
close(pd4);
close(pd2);
unlink("tmp/myfifo2");
}
//write data to myfifo1
write(pd, tab1, sizeof(tab1));
write(pd, tab2, sizeof(tab2));
close(pd);
unlink("tmp/myfifo1");
return 0;
}
这里是代码的结果:
pawel@IMPERIUMVB:~$ gcc pipes.c -lm -o x
pawel@IMPERIUMVB:~$ ./x
X Value :
10
EPS Value :
0.001
10.000000
0.001000
pawel@IMPERIUMVB:~$
Failed to open myfifo1 for reading!
Received initial data x=0.000000, eps = 0.000000
failed to open myfifo2
1. Series term = 0.000000
failed to send singleTerm to myfifo2
Final Result : 0.000000
Current result = 0.000000
Failed to open myfifo1 for reading!
Received initial data x=0.000000, eps = 0.000000
failed to open myfifo2
1. Series term = 0.000000
failed to send singleTerm to myfifo2
Final Result : 0.000000
最佳答案
好的,我解决了那个问题,程序给了我预期的结果。第一个关键要素是删除
int mkfifo(const char *s, mode_t m) { return 0; }
就像 Jonathan Leffler 所说 *“在你的程序中包含 int mkfifo(const char s, mode_t m) { return 0; } 意味着你不会创建 FIFO,所以你不能使用它们。你需要删除它以使用系统调用。”
第二件事是支持我的 fifo 在 lseek() 函数单次使用后一遍又一遍地开始。我还必须在使用 memset() 后清除所有缓冲区。
现在这是我的代码:
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string.h>
#include <math.h>
#include <sys/stat.h>
int i = 0;
double FINAL_RESULT = 1.0 ;
double factorial(int N){
if(N==1 || N == 0)return 1.0;
return N*factorial(N - 1);
}
double Maclaurine(int i , double x , double eps){
double result;
result = (pow(x,(double)i) / (double)factorial(i));
if( result < eps) return -1.0;
return result;
}
void print(char * tab, int size){
printf("\n");
for( int i = 0; i < size ; i++){
printf("%c" , tab[i]);
}
printf("\n");
}
int main(){
umask(0);
if(mkfifo("myfifo1", 0666) == -1){
printf("Failed to create myfifo2\n");
}
if(mkfifo("myfifo2", 0666) == -1){
printf("Failed to create myfifo2\n");
}
if(fork() == 0){
int pd = open("myfifo1", O_WRONLY);
double x1,eps1;
char tab1[256];
//assigning tab1 data to 0's
lseek(pd,0,0);
memset(tab1, 0, 256);
printf("X Value : \n");
scanf("%lf", &x1);
sprintf(tab1,"%lf",x1);
//write data to myfifo1
write(pd, tab1, strlen(tab1));
printf("EPS Value : \n");
scanf("%lf", &eps1);
lseek(pd,0,0);
memset(tab1, 0, 256);
//converting to char*
sprintf(tab1,"%lf",eps1);
write(pd, tab1, strlen(tab1));
lseek(pd,0,0);
memset(tab1, 0, 256);
close(pd);
unlink("myfifo1");
//printing to standard output
//print(tab1, strlen(tab1));
//print(tab2, strlen(tab2));
//creating new process
}
else if(fork() == 0){
int pd2, pd3;
//opening myfifo1 for reading
pd2 = open("myfifo1", O_RDONLY);
//opening myfifo2 for writing
pd3 = open("myfifo2", O_WRONLY);
if(pd2 == - 1){
printf("\nFailed to open myfifo1 for reading!\n");
}
if(pd3 == -1 ){
printf("\nfailed to open myfifo2\n");
}
double x2, eps2;
char tab2[256];
lseek(pd2,0,0);
memset(tab2, 0, 256);
//reading inputed parameters
read(pd2,tab2, sizeof(tab2) );
//converting to floats
x2 = atof(tab2);
lseek(pd2,0,0);
memset(tab2, 0, 256);
read(pd2,tab2, sizeof(tab2) );
//converting to floats
eps2 = atof(tab2);
lseek(pd2,0,0);
memset(tab2, 0, 256);
//printf("\nReceived initial data x=%f, eps = %f \n" , x2, eps2);
double singleTerm = 0.0;
char wyraz[256];
while(1){
//calculate single term of Maclaurin series
singleTerm = Maclaurine(i,x2,eps2);
if(singleTerm > 0.0)printf("\n%d. Term of Mac Series = %lf", i+ 1,singleTerm);
sprintf(wyraz,"%lf",singleTerm);
lseek(pd3,0,0);
if(write(pd3, wyraz, sizeof(wyraz)) == -1 ){
printf("\nfailed to send singleTerm to myfifo2\n");
}
if(singleTerm < 0.0){
//printf("\nI just broke the 1 loop\n");
memset(wyraz, 0, 256);
break;
}
i=i+1;
}
sleep(1);
close(pd3);
close(pd2);
unlink("myfifo2");
unlink("myfifo1");
}//creating another process
else if(fork() == 0){
int pd4;
pd4 = open("myfifo2", O_RDONLY);
char tab3[256];
double x3 = 0.0;
while(1){
x3=0.0;
lseek(pd4,0,0);
memset(tab3, 0, 256);
//reading data from pipe , myfifo2
read(pd4,tab3,sizeof(tab3));
//converting char* to float
x3 = atof(tab3);
FINAL_RESULT += x3;
if(x3<=0.0){
printf("\nFinal Result : %lf", FINAL_RESULT );
break;}
//else
//printf("\n x = %lf, Current result = %lf" ,x3, FINAL_RESULT);
}
sleep(1);
printf("\nFinal Result : %lf", FINAL_RESULT);
close(pd4);
unlink("myfifo2");
}
sleep(7);
unlink("myfifo1");
unlink("myfifo2");
while(1)pause();
return 0;
}
现在我可以看到使用麦克劳林级数对 e^x 函数进行数学估计的美妙之处。以下是结果:
pawel@IMPERIUMVB:~$ gcc rury.c -lm -o zad1
pawel@IMPERIUMVB:~$ ./zad1
X Value :
8
EPS Value :
0.0001
1. Term of Mac Series = 1.000000
2. Term of Mac Series = 8.000000
3. Term of Mac Series = 32.000000
4. Term of Mac Series = 85.333333
5. Term of Mac Series = 170.666667
6. Term of Mac Series = 273.066667
7. Term of Mac Series = 364.088889
8. Term of Mac Series = 416.101587
9. Term of Mac Series = 416.101587
10. Term of Mac Series = 369.868078
11. Term of Mac Series = 295.894462
12. Term of Mac Series = 215.195972
13. Term of Mac Series = 143.463982
14. Term of Mac Series = 88.285527
15. Term of Mac Series = 50.448873
16. Term of Mac Series = 26.906065
17. Term of Mac Series = 13.453033
18. Term of Mac Series = 6.330839
19. Term of Mac Series = 2.813706
20. Term of Mac Series = 1.184718
21. Term of Mac Series = 0.473887
22. Term of Mac Series = 0.180529
23. Term of Mac Series = 0.065647
24. Term of Mac Series = 0.022834
25. Term of Mac Series = 0.007611
26. Term of Mac Series = 0.002436
27. Term of Mac Series = 0.000749
Final Result : 2980.957900 // after adding all of above
e^8 ~ 2980.9579870417
估计满意:)
关于c - Linux。 C 中的管道。将数据发送到另一个进程。写作和阅读,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41184710/
我是 Linux 的新手,并且继承了保持我们的单一 Linux 服务器运行的职责。这是我们的SVN服务器,所以比较重要。 原来在我之前维护它的人有一个 cron 任务,当有太多 svnserve 进程
Node 虽然自身存在多个线程,但是运行在 v8 上的 JavaScript 是单线程的。Node 的 child_process 模块用于创建子进程,我们可以通过子进程充分利用 CPU。范例:
Jenkins 有这么多进程处于事件状态是否正常? 我检查了我的设置,我只配置了 2 个“执行者”... htop http://d.pr/i/RZzG+ 最佳答案 您不仅要限制 Master 中的执
我正在尝试在 scala 中运行这样的 bash 命令: cat "example file.txt" | grep abc Scala 有一个特殊的流程管道语法,所以这是我的第一个方法: val f
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
我需要一些帮助来理解并发编程的基础知识。事实上,我读得越多,就越感到困惑。因此,我理解进程是顺序执行的程序的一个实例,并且它可以由一个或多个线程组成。在单核CPU中,一次只能执行一个线程,而在多核CP
我的问题是在上一次集成测试后服务器进程没有关闭。 在integration.rs中,我有: lazy_static! { static ref SERVER: Arc> = {
我正在使用 Scala scala.sys.process图书馆。 我知道我可以用 ! 捕获退出代码和输出 !!但是如果我想同时捕获两者呢? 我看过这个答案 https://stackoverflow
我正在开发一个C++类(MyClass.cpp),将其编译为动态共享库(MyClass.so)。 同一台Linux计算机上运行的两个不同应用程序将使用此共享库。 它们是两个不同的应用程序。它不是多线程
我在我的 C 程序中使用 recvfrom() 从多个客户端接收 UDP 数据包,这些客户端可以使用自定义用户名登录。一旦他们登录,我希望他们的用户名与唯一的客户端进程配对,这样服务器就可以通过数据包
如何更改程序,以便函数 function_delayed_1 和 function_delayed_2 仅同时执行一次: int main(int argc, char *argv[]) {
考虑这两个程序: //in #define MAX 50 int main(int argc, char* argv[]) { int *count; int fd=shm
请告诉我如何一次打开三个终端,这样我的项目就可以轻松执行,而不必打开三个终端三次然后运行三个exe文件。请问我们如何通过脚本来做到这一点,即打开三个终端并执行三个 exe 文件。 最佳答案 在后台运行
我编写了一个监控服务来跟踪一组进程,并在服务行为异常、内存使用率高、超出 CPU 运行时间等时发出通知。 这在我的本地计算机上运行良好,但我需要它指向远程机器并获取这些机器上的进程信息。 我的方法,在
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 8年前关闭。 Improve this qu
我有一个允许用户上传文件的应用程序。上传完成后,必须在服务器上完成许多处理步骤(解压、存储、验证等...),因此稍后会在一切完成后通过电子邮件通知用户。 我见过很多示例,其中 System.Compo
这个问题对很多人来说可能听起来很愚蠢,但我想对这个话题有一个清晰的理解。例如:当我们在 linux(ubuntu, x86) 上构建一个 C 程序时,它会在成功编译和链接过程后生成 a.out。 a.
ps -eaf | grep java 命令在这里不是识别进程是否是 java 进程的解决方案,因为执行此命令后我的许多 java 进程未在输出中列出。 最佳答案 简答(希望有人写一个更全面的): 获
我有几个与内核态和用户态的 Windows 进程相关的问题。 如果我有一个 hello world 应用程序和一个暴露新系统调用 foo() 的 hello world 驱动程序,我很好奇在内核模式下
我找不到很多关于 Windows 中不受信任的完整性级别的信息,对此有一些疑问: 是否有不受信任的完整性级别进程可以创建命名对象的地方? (互斥锁、事件等) 不受信任的完整性级别进程是否应该能够打开一
我是一名优秀的程序员,十分优秀!