_pclose.gml

来自「开放源码的编译器open watcom 1.6.0版的源代码」· GML 代码 · 共 37 行

GML
37
字号
.func _pclose
#include <stdio.h>
int _pclose( FILE *fp );
.funcend
.desc begin
The &func function closes the pipe associated with
.arg fp
and waits for the subprocess created by
.kw _popen
to terminate.
.desc end
.return begin
The &func function returns the termination status of the command
language interpreter.
If an error occured, &func returns (-1) with
.kw errno
set appropriately.
.return end
.error begin
.begterm 12
:DTHD.Constant
:DDHD.Meaning
.term EINTR
The &func function was interrupted by a signal while waiting for the
child process to terminate.
.term ECHILD
The &func function was unable to obtain the termination status of the
child process.
.endterm
.error end
.see begin
.seelist &function. _pclose perror _pipe _popen
.see end
.seexmp _popen
.class WATCOM
.system

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?