Help for this page

Select Code to Download


  1. or download this
        $pid = fork();
        if( $pid == 0 )
        {
    ...
            # CORE::exit(0);
             exit;
        }
    
  2. or download this
        $pid = fork();
        if( $pid == 0 )
        {
    ...
            ae_util::mylog( "EXIT Child process: $$.$p_pid " );
             CORE::exit(0);
        }