搜索资源列表
fork_textcanjian
- 1、 了解系统调用fork()、execl()、exit()、getpid()和waitpid()的功能和实现过程 2、 编写一段程序实现以下功能: a) 使用系统调用fork()创建两个子进程 b) 父进程重复显示字符串”parent:”,并使用函数getpid()显示自己的进程ID。 c) 两个子进程分别重复显示字符串”child:”,并使用函数getpid()显示自己的进程ID 3、 编写一段程序实现以下功能: a) 使用系统调用fork()创建一个子进程 b)
ctime
- 在sco unix 下显示前n天或后n天日期的处理程序。 printf(\"功能: 时间戳与时间格式字符串的转换程序\\n\") printf(\" -i 输入的参数为时间戳\\n\") printf(\" -s 输入的参数为格式化时间\\n\") printf(\" -t 输入的时间取当前系统时间\\n\") printf(\" -x 输入的时间增加或减少的天数\\n\") printf(\" -o 输出的时间为时间戳格式\\n\") printf(\"
label
- //建立顶级窗口 toplevel = XtVaAppInitialize[&app, "Label", NULL, 0, &argc, argv, NULL, NULL] //建立按钮上标签的字符串 str = XmStringCreateLtoR["A Simple\n Label", XmFONTLIST_DEFAULT_TAG] n = 0 XtSetArg[args[n], XmNlabelString, str]
list
- //建立顶级窗口 toplevel = XtVaAppInitialize[&app, "List", NULL, 0, &argc, argv, NULL, NULL] //建立列表上的复合字符串 for[i=0 i<12 i++] str_months[i] = XmStringCreateSimple[months[i]] //建立列表 n = 0 XtSetArg[args[n], XmNitem
zidingyi-spinbox
- 自定义spinbox 实现显示内容为字符串 取出value值为int数据 编译可直接运行 为显示其效果 专门为此写了一个mian函数-Custom spinbox out to achieve the display value to a string value of int data compiled can be directly run to show the effect of specially written a mian function
myshell_v0.3
- 在Linux中,用C编写一个myshell1原型,基本功能是根据创建一个子进程,它显示从父进程获得的环境变量和命令行参数,且父进程在子进程结束后退出。 父进程中接收控制台输入一行字符串,作为用户发出的Linux命令,如ls /usr/*.c <回车>,在创建一个子进程后,子进程通过调用execlp()系统调用,执行这条命令。输入输出重定向与管道-In Linux, using C to write a myshell1 prototype, the basic function i
operating-system
- 利用C语言编写一个微型命令解释程序,接受并解释以下命令:dir:列当前目录;cop 文件1,文件2:拷贝文件;era 文件名:删除文件;dis 文件名:显示字符串;end:结束并退出;命令前后有空格为合法命令。-Using C language to write a mini-command interpreter, to accept and explain the following command: dir: out the current directory cop file 1, f
qq
- 利用管道技术实现父子进程间通信,具体流程:父进程以3秒为周期接收用户输入并发送到子进程,子进程接收到信息后显示并回传,父进程接收到回传信息后显示。父子进程在通信过程中采用信号中断处理方式进行处理,接收到“exit”字符串后父子进程均退出。(提示,采用SIGUSR1或SIGUSR2信号)-The use of pipeline technology communication between parent and child, the specific process: the parent pr
pro
- CDIR(列出当前文件和目录) ccopy文件1文件2(拷贝文件) cerase文件名(删除文件) CDIS字符串(显示该字符串) CEND(退出微型命令解释程序)-CDIR(列出当前文件和目录) ccopy(list) cerase(del) CDIS(cdis) CEND(end)
curses
- 一个简单的C++的NCURSES界面,代码中有介绍了七种不同的显示字符串的方式。-A simple C++ of NCURSES interface code has introduced a string of seven different display mode.
CmdTranslate
- linux中解释"dir(列出当前目录),cop(拷贝),era(删除),dis(显示字符串),end(退出)"命令(Linux explains "dir (lists the current directory), cop (copy), era (delete), dis (display string), end (exit)" command)