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_mercure.ksh

    r80 r92  
    597597 
    598598#D-#================================================== 
     599#D-function IGCM_sys_Rm 
     600#D-* Purpose: generic rm 
     601#D-* Examples: 
     602#D- 
     603function IGCM_sys_Rm { 
     604    IGCM_debug_PushStack "IGCM_sys_Rm" -- $@ 
     605    if ( $DEBUG_sys ) ; then 
     606        echo "IGCM_sys_Rm :" $@ 
     607    fi 
     608 
     609    typeset RET 
     610 
     611    echo rm $@ > out_rsync 2>&1 
     612    \rm $@ >> out_rsync 2>&1 
     613    RET=$? 
     614 
     615    if [ ${RET} -gt 0 ] ; then 
     616        echo "IGCM_sys_Rm : error." 
     617        cat out_rsync 
     618        IGCM_debug_Exit "IGCM_sys_Rm" 
     619    fi 
     620    IGCM_debug_PopStack "IGCM_sys_Rm" 
     621} 
     622 
     623#D-#================================================== 
    599624#D-function IGCM_sys_Mv 
    600625#D-* Purpose: generic move 
Note: See TracChangeset for help on using the changeset viewer.