Help for this page

Select Code to Download


  1. or download this
    while( ){ fork(); }
    
  2. or download this
        if( fork() ){
            # code
        } else {
            # code
        }
    
  3. or download this
        while( ){
    
    ...
            }
    
        }
    
  4. or download this
        while( ){
    
    ...
            }
        
        }
    
  5. or download this
        while( ){
            unless( fork() ){
    ...
                exit;
            }
        }