Changes between Version 8 and Version 9 of OpenMP


Ignore:
Timestamp:
09/23/16 05:16:10 (8 years ago)
Author:
Sebastian Huber
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpenMP

    v8 v9  
    2626
    2727{{{
     28#!c
    2829#include <stdlib.h>
    29 void __attribute__((constructor(1000))) config_libgomp( void )
     30
     31void __attribute__((__constructor__(1000))) config_libgomp(void)
    3032{
    31     setenv( "OMP_DISPLAY_ENV", "VERBOSE", 1 );
    32     setenv( "GOMP_SPINCOUNT", "30000", 1 );
    33     setenv( "GOMP_RTEMS_THREAD_POOLS", "1$2@SCHD", 1 );
     33    setenv("OMP_DISPLAY_ENV", "VERBOSE", 1);
     34    setenv("GOMP_SPINCOUNT", "30000", 1);
     35    setenv("GOMP_RTEMS_THREAD_POOLS", "1$2@SCHD", 1);
    3436}
    3537}}}