单词 | child process | ||||||||||||||
释义 | child process
更多释义 收起释义 例句释义: 子进程,子行程,子处理序 1. Despite its untimely exit, the child process is still in the process table as a defunct process, otherwise known as a zombie. 尽管子进程提前退出,但它仍然在进程表中作为失效(defunct)进程存在,或称为僵死(zombie)进程。 www.ibm.com 2. With the return value of fork in mind, the code can now check to see if it is the parent or child process and act accordingly. 考虑到fork的返回值,现在该代码可以检查确定它是父进程还是子进程,并进行相应的操作。 www.ibm.com 3. To solve these problems, your script needs to be able to catch or trap some of the signals discussed in Terminating a child process. 要解决这类问题,脚本需要能够捕获或trap终止子进程一节讨论的信号。 www.ibm.com 4. You do this by setting up a child process to run and assigning its output (up to 2GB worth ) to a variable . 您可以通过设置要运行的子进程并将该进程的输出结果(多大2GB)赋予某个变量来定义多值变量。 www.bing.com 5. lpThreadAttributes is a pointer to the thread attributes that determines whether the thread handle can be inherited by the child process. lpThreadAttributes是指向线程属性的指针,决定了线程句柄是否能由子进程继承。 www.ibm.com 6. The child process waits on the next write operation until the parent reads from the full stream or closes the stream. 子进程将等待下一次写操作,直到父进程读取了全部流或关闭该流为止。 msdn2.microsoft.com 7. READONLY Section cannot be modified by the child process. 段不能被子进程修改。 blog.csdn.net 8. stream and the child process writing to that stream . these dependencies can result in deadlock conditions. 流的调用方及写入该流中的子进程之间引入一个依赖项。 ichacha.net 9. When a program forks, GDB will continue to debug the parent process and the child process will run unimpeded. 当一个程序fork时,GDB将继续调试主进程而子进程的运行不受影响。 wiki.chinaunix.net 10. The child process ID is shown in the third position and remains the same during a sequential restore. 子进程ID显示在第3个位置,在一次顺序恢复期间一直保持不变。 www.ibm.com 1. After the forking process, the address space of the child process is overwritten with the new process data. 程序分叉后,子程序的地址空间将被新程序的数据所覆盖。 bbs.chinaunix.net 2. Although a parent process can access the process ID of its child process and can thus pass arguments to it, the reverse is false. 尽管父进程可以访问其子进程的进程ID并向它传递参数,但是反过来不行。 www.ibm.com 3. The technical attributes now include checkboxes to indicate whether the process is long-running, and whether it runs as a child process. 技术属性现在包括相关复选框,以指示流程是否长时间运行,以及是否作为子流程运行。 www.ibm.com 4. If you did not use exec, the JVM would start as a child process of the shell that is executing the run script. 如果没有使用exec,那么JVM会作为执行run脚本的外壳的一个子进程启动。 www.ibm.com 5. After returning from the fork system call, the child process is instructed to execv the new binary. 在从fork系统调用返回以后,将指示子进程执行(execv)新的二进制文件。 www.ibm.com 6. The parent process would wait indefinitely for the child process to exit. 父进程将无限期地等待子进程退出。 msdn2.microsoft.com 7. When a child process dies, its parent is notified with a signal called SIGCHLD. 当子进程终止时,会使用一个名为SIGCHLD的信号来通知其父进程。 www.ibm.com 8. If an invoked process runs with an autonomy child, the child process takes part in the Compensation Sphere of its parent process. 如果一个被调用的流程有自治的child,child将加入父流程的补偿范围。 www.ibm.com 9. For the SIGCHLD signal, the application must call the wait(3c) function to wait for the child process to exit. 对于SIGCHLD信号,应用程序必须调用wait(3c)函数,以等待子进程退出。 www.ibm.com 10. If the child process ever terminates, supervise will restart it. 如果子进程中止,supervise会重新启动它。 www.ibm.com 1. If you want to create a separate process, you must first fork, and then exec the new binary within the child process. 如果希望创建一个单独的进程,您必须首先运行fork,然后在子进程中执行(exec)新的二进制文件。 www.ibm.com 2. The child process continues by printing its parent PID for five seconds. 子进程在五秒钟内继续打印其父PID。 www.ibm.com 3. High-level way to execute a command as a child process, buffer the output, and return it all in a callback. 使用子进程执行命令,缓存子进程的输出,并将子进程的输出以回调函数参数的形式返回。 wiki.grati.org 4. Note that the child process never returns from the call to execv. 请注意,该子进程一直没有从execv调用返回。 www.ibm.com 5. When the child process writes enough data to fill its redirected stream, it is dependent on the parent. 子进程写入足够多的数据以填充重定向流的时间依赖于父进程。 msdn2.microsoft.com 6. You can avoid deadlocks by evaluating dependencies between the caller and child process. 您可以通过计算调用方和子进程之间的依赖项从而避免出现死锁情况。 msdn2.microsoft.com 7. A pipe, though, can only be used between a parent and child process, not between two arbitrary processes. 但是,管道只能在父进程和子进程之间使用,不能在任意两个进程之间使用。 www.ibm.com 8. Error while creating driver database: abnormal child-process termination. 创建驱动程序库时发生错误:不正常的子进程终止。 translations.launchpad.net 9. A microflow is considered to be a dependent child process. 微流被看作一个独立的child。 www.ibm.com 10. Because the child process is running in the background, control returns to the shell as soon as the parent dies. 由于子进程在后台运行,父进程一终止,控制即返回到Shell。 www.ibm.com 1. The code implements a parent and child process that communicates via a shared memory segment. 代码实现通过共享内存段通信的父进程和子进程。 www.ibm.com 2. the deadlock condition results when the caller and child process wait on each other to complete an operation , and neither can proceed. 当调用方和子进程相互等待对方完成操作时,就会产生死锁情况,使双方都无法继续执行操作。 ichacha.net 3. supervise can also stop and restart its child process by sending signals to it. supervise也可以向子进程发送信号,停止或重新启动子进程。 www.ibm.com 4. Abnormal child process termination. 副进程不正常地中止了。 www.showxiu.com 5. Improved the processing of child process termination in the server. 服务器的子过程中止处理的改善。 opensoap.jp 6. Listing 7 illustrates a parent and child process shown within a bash environment. 清单7演示bash环境中的父进程和子进程。 www.ibm.com 7. The Resource Monitor process (RESRCMON. EXE), is a child process of the Cluster service process (CLUSSVC. EXE). 资源监视进程(RESRCMON.EXE)是群集服务进程(CLUSSVC.EXE)的子进程。 technet.microsoft.com 8. The parent macroflow should call the "sub-process" microflow as a child process. 父级宏流应将“子流程”微流作为子流程进行调用。 www.ibm.com 9. How can a parent and child process communicate? 父子进程如何通信? apig.bokee.com 10. This is important because supervise manages only its immediate child process. 这一点很重要,因为supervise只能管理自己的直接子进程。 www.ibm.com 1. The child process would wait indefinitely for the parent to read from the full 子进程将无限期地等待父进程读取全部 msdn2.microsoft.com 2. The parent process would wait indefinitely for the child process to close its 父进程将无限期地等待子进程关闭其 msdn2.microsoft.com 3. A Method for Reduction Response Time by Beforehand Centralization Creating Server's Child-Process 一种预先集中创建服务器子进程缩短服务器响应时间的方法 www.ilib.cn 4. Listing 7. Example of a parent and child process in a bash environment 清单7.bash环境中的父进程和子进程示例 www.ibm.com 5. Compensation in an invoked microflow child process 被调用的微流子流程中的补偿 www.ibm.com 6. Creating a child process from a running process 从正在运行的进程创建子进程 www.ccoss.com.cn |
||||||||||||||
随便看 |
|
英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。