| iMatix home page
| << | < | > | >>
SFL Logo SFL
Version 2.11

 

process_close

#include "sflproc.h"
void
process_close (
    PROCESS process)

Synopsis

You should call this function when a process has ended normally, if you did not specify the wait option when calling the process create() function. On some systems, each created process uses some memory. process close() guarantees that this memory is correctly freed. Does nothing if the process handle is NULL.

Source Code - (sflproc.c)

{
#if (defined (WIN32))
    if (process)
      {
        mem_free (process-> envd);
        mem_free (process);
      }
#elif (defined (__VMS__))
    mem_free (process);
#endif
}

| << | < | > | >> iMatix Copyright © 1996-2000 iMatix Corporation