Ignore:
Timestamp:
04/09/09 19:09:08 (15 years ago)
Author:
sdipsl
Message:

MAF :
On the way to finalyze vargas

  • adjustment to support large numbers of cpus (and files)
  • prepare another policy for rebuild : from workdir

Some cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libIGCM/libIGCM_sys/libIGCM_sys_brodie.ksh

    r80 r92  
    641641 
    642642#D-#================================================== 
     643#D-function IGCM_sys_Rm 
     644#D-* Purpose: generic rm 
     645#D-* Examples: 
     646#D- 
     647function IGCM_sys_Rm { 
     648    IGCM_debug_PushStack "IGCM_sys_Rm" -- $@ 
     649    if ( $DEBUG_sys ) ; then 
     650        echo "IGCM_sys_Rm :" $@ 
     651    fi 
     652 
     653    typeset RET 
     654 
     655    echo rm $@ > out_rsync 2>&1 
     656    \rm $@ >> out_rsync 2>&1 
     657    RET=$? 
     658 
     659    if [ ${RET} -gt 0 ] ; then 
     660        echo "IGCM_sys_Rm : error." 
     661        cat out_rsync 
     662        IGCM_debug_Exit "IGCM_sys_Rm" 
     663    fi 
     664    IGCM_debug_PopStack "IGCM_sys_Rm" 
     665} 
     666 
     667#D-#================================================== 
    643668#D-function IGCM_sys_Mv 
    644669#D-* Purpose: generic move 
Note: See TracChangeset for help on using the changeset viewer.