LCOV - code coverage report
Current view: top level - nsprpub/pr/include - prproces.h (source / functions) Hit Total Coverage
Test: output.info Lines: 0 12 0.0 %
Date: 2017-07-14 16:53:18 Functions: 0 12 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
       2             : /* This Source Code Form is subject to the terms of the Mozilla Public
       3             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       4             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
       5             : 
       6             : #ifndef prproces_h___
       7             : #define prproces_h___
       8             : 
       9             : #include "prtypes.h"
      10             : #include "prio.h"
      11             : 
      12             : PR_BEGIN_EXTERN_C
      13             : 
      14             : /************************************************************************/
      15             : /*****************************PROCESS OPERATIONS*************************/
      16             : /************************************************************************/
      17             : 
      18             : typedef struct PRProcess PRProcess;
      19             : typedef struct PRProcessAttr PRProcessAttr;
      20             : 
      21           0 : NSPR_API(PRProcessAttr *) PR_NewProcessAttr(void);
      22             : 
      23           0 : NSPR_API(void) PR_ResetProcessAttr(PRProcessAttr *attr);
      24             : 
      25           0 : NSPR_API(void) PR_DestroyProcessAttr(PRProcessAttr *attr);
      26             : 
      27           0 : NSPR_API(void) PR_ProcessAttrSetStdioRedirect(
      28             :     PRProcessAttr *attr,
      29             :     PRSpecialFD stdioFd,
      30             :     PRFileDesc *redirectFd
      31             : );
      32             : 
      33             : /*
      34             :  * OBSOLETE -- use PR_ProcessAttrSetStdioRedirect instead.
      35             :  */
      36           0 : NSPR_API(void) PR_SetStdioRedirect(
      37             :     PRProcessAttr *attr,
      38             :     PRSpecialFD stdioFd,
      39             :     PRFileDesc *redirectFd
      40             : );
      41             : 
      42           0 : NSPR_API(PRStatus) PR_ProcessAttrSetCurrentDirectory(
      43             :     PRProcessAttr *attr,
      44             :     const char *dir
      45             : );
      46             : 
      47           0 : NSPR_API(PRStatus) PR_ProcessAttrSetInheritableFD(
      48             :     PRProcessAttr *attr,
      49             :     PRFileDesc *fd,
      50             :     const char *name
      51             : );
      52             : 
      53             : /*
      54             : ** Create a new process
      55             : **
      56             : ** Create a new process executing the file specified as 'path' and with
      57             : ** the supplied arguments and environment.
      58             : **
      59             : ** This function may fail because of illegal access (permissions),
      60             : ** invalid arguments or insufficient resources.
      61             : **
      62             : ** A process may be created such that the creator can later synchronize its
      63             : ** termination using PR_WaitProcess(). 
      64             : */
      65             : 
      66           0 : NSPR_API(PRProcess*) PR_CreateProcess(
      67             :     const char *path,
      68             :     char *const *argv,
      69             :     char *const *envp,
      70             :     const PRProcessAttr *attr);
      71             : 
      72           0 : NSPR_API(PRStatus) PR_CreateProcessDetached(
      73             :     const char *path,
      74             :     char *const *argv,
      75             :     char *const *envp,
      76             :     const PRProcessAttr *attr);
      77             : 
      78           0 : NSPR_API(PRStatus) PR_DetachProcess(PRProcess *process);
      79             : 
      80           0 : NSPR_API(PRStatus) PR_WaitProcess(PRProcess *process, PRInt32 *exitCode);
      81             : 
      82           0 : NSPR_API(PRStatus) PR_KillProcess(PRProcess *process);
      83             : 
      84             : PR_END_EXTERN_C
      85             : 
      86             : #endif /* prproces_h___ */

Generated by: LCOV version 1.13