Changes in / [7522692:19de7864]


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Jenkins/tools.groovy

    r7522692 r19de7864  
    66import org.jenkinsci.plugins.pipeline.modeldefinition.Utils
    77
     8// Global for the stage name
     9StageName = ''
     10
    811// wrapper around stage declaretion to be more verbose
    912// and allow showing as skipped in the UI
    1013def BuildStage(String name, boolean run, Closure block ) {
    11         echo " -------- ${name} -------- "
     14        StageName = name
     15        echo " -------- ${StageName} -------- "
    1216        if(run) {
    1317                stage(name, block)
  • Jenkinsfile

    r7522692 r19de7864  
    5454        //attach the build log to the email
    5555        catch (Exception caughtError) {
    56                 // Store the result of the build log
    57                 currentBuild.result = "FAILURE"
    58 
    59                 // An error has occured, the build log is relevent
     56                //rethrow error later
     57                err = caughtError
     58
     59                echo err.toString()
     60
     61                //An error has occured, the build log is relevent
    6062                log_needed = true
    6163
    62                 // rethrow error later
    63                 err = caughtError
    64 
    65                 // print the error so it shows in the log
    66                 echo err.toString()
     64                //Store the result of the build log
     65                currentBuild.result = "${tools.StageName} FAILURE".trim()
    6766        }
    6867
  • libcfa/src/concurrency/kernel/startup.cfa

    r7522692 r19de7864  
    118118
    119119extern size_t __page_size;
    120 extern int __map_prot;
    121120
    122121//-----------------------------------------------------------------------------
     
    726725                }
    727726        #else
    728                 __cfaabi_dbg_debug_do(
    729                         // pthread has no mechanism to create the guard page in user supplied stack.
    730                         if ( mprotect( stack, __page_size, __map_prot ) == -1 ) {
    731                                 abort( "mprotect : internal error, mprotect failure, error(%d) %s.", errno, strerror( errno ) );
    732                         } // if
    733                 );
    734727                free( stack );
    735728        #endif
Note: See TracChangeset for help on using the changeset viewer.