搜索资源列表

  1. pv

    0下载:
  2. 设有父子2个进程共享一个临界资源,每个进程循环进入该临界区3次:父进程每次进入临界区后显示“prnt in”,出临界区则显示“prnt out”;子进程每次进入临界区后显示“chld in”出临界区则显示“chld out”。观察运行结果,应该是一个进程出来后另一个才能进去。 -Father and son with two processes share a critical resource in each process cy
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:吕璐
  1. Anti-Loader

    0下载:
  2. Anti-Loader... ...Anti-Loader示例 ├──PEB................利用TEB检测 ├──FindWindow.........查找句柄检测 ├──IsDebuggerPresent..利用IsDebuggerPresent检测 ├──Parent.............检查父进程 └──STARTUPINFO........检查STARTUPINFO结构-Anti
  3. 所属分类:加密解密

    • 发布日期:2024-05-20
    • 文件大小:845824
    • 提供者:王刚
  1. 01051312.tar

    0下载:
  2. 应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符;接受和分析命令行(滤去无效的空格、tab符号以及换行符等);执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要wait) c) 处理多行 -With C++ Prepared Linux myshell, support the redirect and pipe sym
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:24576
    • 提供者:唐长茂
  1. fork

    0下载:
  2. 在linux或unix中,使用系统调用fork( )创建两个子进程,并观察子进程和父进程的运行情况。-In linux or unix, the use of system calls fork () to create two sub-processes, and to observe the sub-process and the operation of the parent process.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:li
  1. LINUX_process

    0下载:
  2. 这是linux下关于进程操作的两个例子,分别是"父子进程都写入文件"和"管道-两个子进程写父进程读".这两个程序对初学都理解linux下的多进程操作很有帮助.在linux GCC下编译通过.-This is under linux operating on two examples of the process, namely the " father and son have been entered into the pro
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:
  1. Unix_process

    0下载:
  2. 目录 1.理解进程 5 1.1.进程的基本概念 5 1.1.1.区别程序与进程 5 1.1.2.进程分类 5 1.1.3.进程属性 5 1.1.4. 父进程和子进程 5 1.2.Unix/Linux下的进程管理 6 1.2.1.进程是系统资源管理的基本单位 6 1.2.2. Unix/Linux进程 6 1.2.3. task_struct数据结构组成 6 1.2.4.进程 Identifie
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:27648
    • 提供者:grub
  1. ex01

    0下载:
  2. 编写一个多进程并发执行程序。父进程首先创建一个执行ls 命令的子进程然后再创建一个执行ps 命令的子进程,并控制ps 命令总在ls 命令之前执行。-linux c multiprocess
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:7168
    • 提供者:孙凯
  1. pipe

    0下载:
  2. linux下管道监视程序,父进程通过管道发送信息给子进程-linux monitoring procedures under the pipeline, the father of the process of sending information through the pipeline to the child process
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:hc
  1. Unix_fork_report

    0下载:
  2. 进程的创建是通过fork调用完成的,fork调用又分成fork1、forkall和vfork三种不同的形式。这个实验将观察fork对其他系统函数的调用,并观察三种fork函数的不同之处。 在类Unix系统中,创建进程的途径就是fork。当一个进程调用fork函数时,内核会创建一个新的子进程,并把父进程的很多对象都复制一份到子进程中,例如地址空间、线程、文件描述符等。fork函数在父进程和子进程中的返回值是不同的,在父进程中它返回创建
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:20480
    • 提供者:杨扬
  1. theprocess

    0下载:
  2. 编制一段程序,使其实现进程的软中断通信。 要求:使用系统调用fork()创建两个子进程,再用系统调用signal()让父进程捕捉键盘上来的中断 信号;当捕捉到中断信号后,父进程用系统调用kill()向两个子进程发出信号,子进程捕捉到信号后 分别输出下列信息后终止: Child Process11 is Killed by Parent! Child Process12 is Killed by Parent! 父
  3. 所属分类:Windows编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:creajoy
  1. Linuxcore

    0下载:
  2. 读这本书,仿佛就像是一位朋友在对着你讲话,他把Linux源码中的枯燥的理论跟生活中普遍的事物联系起来,像进程的task_struct结构体,相当于我们的“户口本”,进程转换到"zombie”状态,“进程死亡了无法帮自己注销户口登记,要父进程帮忙”等等,这些解释非常地形象。所谓的大师也便是如此,用最通俗的语言把最深奥的道理讲明白,我想,这本书的作者做到了。 - Reading this book, as if a friend is
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:5165056
    • 提供者:john winsome
  1. ivi_ls

    0下载:
  2. 目的: 1、应用UNIX的fork()等系统调用,编写一个c程序具有以下功能: a) 实现Shell的基本功能,包括有:打印提示符; 接受和分析命令行(滤去无效的空格、tab符号以及换行符等); 执行命令(要有出错处理;输入exit或者bye退出);返回父进程; b) 处理后台程序(不需要wait) c) 处理多行命令(分析命令行中的‘ ’并处理之) d)应用 dup
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:2048
    • 提供者:ivi
  1. pm1

    0下载:
  2. 创建一个进程,由子进程调用命令 ls,父进程等待子进程结束后 退出,并以特定方式显示输出。-Create a process, called by the sub-process command ls, the parent process to wait for the end of child process exit, and display a particular way.
  3. 所属分类:系统编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:lee
  1. pm3

    0下载:
  2. 程序三(进程间通信) :创建管道,子进程向管道写信息,父进程从管道中读取信息。-Procedure three (inter-process communication): the creation of channels, sub-process to write information to the pipeline, the parent process read information from the pipeline.
  3. 所属分类:系统编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:lee
  1. wyjcgd

    0下载:
  2. 进程管道通信,用C语言模拟LINUX操作系统中父进程与子进程的通信管道。-The process of communication channels, using C language simulation of LINUX operating system in the parent process and the sub-process communication channels.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:love暖色
  1. GetFatherPro

    0下载:
  2. 得到子进程的父进程信息-To be the parent of the child process, process information asdhsrhsgfshbshbsashshsh
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:1154048
    • 提供者:袁伟华
  1. parentandchild

    0下载:
  2. 用linux和gtk/glade编写的父子进程通信程序,开辟n个子进程,子进程中各自统计数字,每隔一秒就向父进程发送信号,父进程统计所有子进程的数字-To use linux and gtk/glade father and son prepared by the process of communication program, open up n sub-processes, sub-processes in respect of
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:8192
    • 提供者:chang
  1. createprocess

    0下载:
  2. 输入实验提供的代码后,可以输入createpc命令创建进程,输入showdetail显示每个进程及其子进程的信息,测试命令解释如下: 1) createpc 创建进程命令。 参数: 1 pid(进程id)、 2 ppid(父进程id)、3 prio(优先级)。 示例:createpc(2,1,2) 。创建一个进程,其进程号为2,父进程号为1,优先级为2。 2) showdetail 显示进程信息命令。 3) exi
  3. 所属分类:进程与线程

    • 发布日期:2024-05-20
    • 文件大小:12288
    • 提供者:漂流
  1. CServer.tar

    0下载:
  2. 用UICI库实现了父服务器策略。父进程接受客户机连接并创建出一个子进程来调用copyfile,这样父进程就可以继续等待连接了。-By UICI library implements strategy for the parent server. The parent process to accept the client connections and creates a child process to call copyfile,
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-20
    • 文件大小:15360
    • 提供者:xuxin
  1. tongbu

    0下载:
  2. 实现进程间同步,父进程创建子进程,在Linux下实现多进程设计-To achieve inter-process synchronization, the parent process creates the child process, multi-process design under Linux
  3. 所属分类:编程文档

    • 发布日期:2024-05-20
    • 文件大小:1024
    • 提供者:萧邦
« 1 2 3 4 56 7 8 9 10 11 12 »

源码中国 www.ymcn.org