#include <unistd.h> #include <errno.h> int main(int argc,char **argv){ char buf[256]; . pid_ t pid=fork0; //用fork创建子进程后,子进程具有与父进程同样的代码 //pid为-1,代表没有创建成功,前还只有一个进程 . if(pid==-1) return 0; /如果创建成功,则父子进程中都会从fork执行代码 /为区分开代码是要从子进程运行还是父进程中运行,用pid判断 else if (pid= =0){ //指定子进程要执行的代码 strcpy(buf, "我是子进程"); int i,a= 5; for(i=0;i<5;i++){ printf("son --- %d\n",i); sleep(1); } else { //父进程要执行的代码 strcpy(buf, "我是父进程"); int i,a=10; for(i=5;i<a;i+ +){ . printf(" paren--- %d\n",); sleep(3); . //父子进程都会执行的代码 printf(" --- %s,my pid= %d\n" ,buf,getpid(); return 0;
时间: 2024-03-07 21:53:12 浏览: 66
这是一个用 C 语言编写的程序,它使用了 fork 函数创建了一个子进程并在子进程中执行一段代码,同时在父进程中也执行了一段代码。子进程的代码使用了一个字符数组 buf 存储了一段字符串,然后使用一个循环输出了五次一段信息,并在每次输出后暂停了一秒。父进程的代码同样使用了字符数组 buf 存储了一段字符串,然后使用一个循环输出了五次一段信息,并在每次输出后暂停了三秒。最后,父子进程都输出了一个包含自己进程 ID 和字符串 buf 的信息,并结束了程序。
相关问题
分析代码:#include <stdio.h> #include <time.h> #include <stdlib.h> #include <errno.h> #include <unistd.h> #include <pthread.h> //char buf[] = "welcome"; void * handler(void *p)//void *p = buf; { getchar(); printf("%s\n", (char *)p); return p; pthread_exit(p); } void f(char **p)//char **p = &s; { char *q = "dadf"; *p = q; } int main(int argc, char *argv[]) { char *s = NULL; f(&s); printf("%s\n", s); #if 1 pthread_t thread; char buf[] = "welcome"; void *result; if (pthread_create(&thread, NULL, handler, (void *)buf)) exit(-1); pthread_join(thread, &result);//exit(0); waitpid(pid, &status, 0); printf("***\n"); printf("result:%s\n", (char *)result); while (1); #endif exit(0); }
这段代码主要涉及了线程以及指针的使用。
首先,在 `f` 函数中,使用了一个二级指针 `char **p`,并将其传入函数中。在函数中,又定义了一个指针 `q`,并将其指向了一个字符串常量。然后,将 `q` 的值赋给了 `p` 指向的内存地址,即 `s`,最后在 `main` 函数中输出了 `s` 的值。
在 `main` 函数中,定义了一个指针 `s`,并将其初始化为 `NULL`。然后,调用了 `f` 函数,并将 `s` 的地址传入。`f` 函数中将 `s` 指向了一个字符串常量,因此在 `main` 函数中输出 `s` 的值时,会输出 `dadf`。
接下来,使用了线程,在 `handler` 函数中,定义了一个指针 `p`,并将其强制类型转换为 `char*` 类型。然后,通过 `getchar()` 等待用户输入,最后将 `p` 返回。在 `main` 函数中,通过 `pthread_create` 函数创建了一个新的线程,并将 `handler` 函数作为线程入口函数,`buf` 的地址作为参数传入。然后,通过 `pthread_join` 函数等待线程的退出,并获取返回值。最后,在 `main` 函数中输出了返回值。
需要注意的是,代码中存在一个 `waitpid` 函数,但是在代码中并没有定义 `pid` 变量,因此这一行代码会导致编译错误。可以将其注释掉,或者在代码中定义 `pid` 变量并赋值。此外,代码中的 `pthread_exit(p)` 函数永远不会被执行,因为其位于 `return` 语句之后。
#include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/ioctl.h> #include <stdlib.h> #include <string.h> #include <fcntl.h> #include <unistd.h> #include <errno.h> #include "scull.h" void write_proc(void); void read_proc(void); int main(int argc, char **argv){ if(argc == 1){ puts( "Usage: scull_test [write|read]"); exit(0); } if( !strcmp(argv[1],"write")) write_proc(); else if(!strcmp(argv[1],"read")) read_proc(); else puts( "scull_test: invalid command! "); return 0; } void write_proc(){ int fd, len,quit = 0; char buf[ 100]; fd = open(DEVICE_FILE,O_WRONLY); if(fd <= 0){ printf("Error opening device file %s for writing!\n",DEVICE_FILE); exit(1); } printf( "input 'exit' to exit!"); while( !quit) { printf( "\n write>> "); fgets(buf, 100,stdin); if(!strcmp(buf, "exit\n")) quit =1; while(ioctl(fd,SCULL_QUERY_NEW_MSG)) usleep(1000); len=write(fd, buf, strlen(buf)); if(len<0){ printf( "Error writing to device %s !\n" ,SCULL_NAME); close(fd); exit(1); } printf("%d bytes written to device %s!\n",len- 1,SCULL_NAME); } close(fd); } void read_proc(){ printf("\n read<< "); while(!ioctl(fd,SCULL_QUERY_NEW_MSG)) usleep(1000);// get the msg length len=ioctl(fd, SCULL_QUERY_MSG_LENGTH, NULL); if(len){ if(buf!=NULL) free(buf); buf = malloc(sizeof(char)*(len+1)); len = read(fd, buf, len); if(len < 0){ printf("Error reading from device %s!", SCULL_NAME); }else{ if(!strcmp(buf,"exit\n")){ ioctl(fd, SCULL_RESET); // reset quit = 1; printf("%s\n",buf); }else printf("%s\n",buf); } } free(buf); close(fd); }
在这段代码中,有一个 `quit` 变量被使用了,但是并没有被声明。具体来说,`quit` 变量在 `write_proc` 函数中被定义为整型变量,并在循环体中被使用。
为了解决这个问题,你需要在 `write_proc` 函数中的开头部分,即 `int fd, len,quit = 0;` 这行代码之前,添加 `int quit;` 这行代码,以显示声明 `quit` 变量。这样编译器就能够正确地识别这个变量,并在使用之前进行声明。
阅读全文