
create a process component which use CreateProcess to spawn the child. Special care should be taken in order to correctly redirect the stdin, stdout and stderr of the child process. This commit was SVN r11405.
18 строки
493 B
Bash
Исполняемый файл
18 строки
493 B
Bash
Исполняемый файл
# -*- shell-script -*-
|
|
#
|
|
# Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
# of Tennessee Research Foundation. All rights
|
|
# reserved.
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# MCA_pls_process_CONFIG([action-if-found], [action-if-not-found])
|
|
# -----------------------------------------------------------
|
|
AC_DEFUN([MCA_pls_process_CONFIG],[
|
|
AC_CHECK_FUNC([CreateProcess], [$1], [$2])
|
|
])dnl
|