# HG changeset patch # User jlarmour # Date 949521422 0 # Node ID bf00f99aec697422f160069b38f9a7c5f00ad43e # Parent b4822dd69c3399085cfbed0e749e7c4e2c082d01 Merge from eCos master repository on 2000-02-02-19:16:44-GMT diff --git a/packages/ChangeLog b/packages/ChangeLog --- a/packages/ChangeLog +++ b/packages/ChangeLog @@ -688,11 +688,11 @@ 1998-07-23 Bart Veer + + * tests/testintr.cxx: Don't output DELAYLOCKSCHED quite so often + on synthetic target. + +2000-01-31 Hugo Tyson + + * tests/testintr.cxx (CHECK_TID): Test that get_tid() returns 0 in + ISR context ie. non-task portion. + + * include/uit_func.inl (get_tid): Check the sched lock for + non-task portions, ie. ISR/DSR will have the scheduler locked. + +2000-01-28 Jonathan Larmour + + * tests/testintr.cxx (DELAYLOCKSCHED): When in long testing loops, + occasionally output a message to show the test is still alive + 2000-01-26 Hugo Tyson * include/pkgconf/uitron.h: Add new option @@ -635,11 +653,11 @@ Fri Jul 24 13:02:46 1998 Hugo Tyson = prewups[ 4 ] + EVENTS )\ - break; \ - } \ - unlock_sched(); \ - } while ( wakeups[ 4 ] < prewups[ 4 ] + EVENTS ); \ +#define DELAYLOCKSCHED() \ +do { \ + count = 0; \ + int i; \ + do { \ + lock_sched(); \ + for ( i = 0; i < SMALLDELAY; i++ ) { \ + count++; \ + if ( wakeups[ 4 ] >= prewups[ 4 ] + EVENTS ) \ + break; \ + } \ + unlock_sched(); \ + CYG_TEST_INFO(" [Still iterating, please wait....] "); \ + } while ( wakeups[ 4 ] < prewups[ 4 ] + EVENTS ); \ } while ( 0 ) #define DELAY() \ @@ -288,8 +303,12 @@ void task1( unsigned int arg ) if ( cyg_test_is_simulator ) { // take less time + events = EVENTSSIM; +// Don't output messages more frequently on synthetic target. It's +// much faster than sims and will cause massive amounts of output. +#ifndef CYGPKG_HAL_I386_LINUX smalldelay = SMALLDELAYSIM; - events = EVENTSSIM; +#endif } intercom = 0; @@ -565,7 +584,7 @@ void task2( unsigned int arg ) CYG_TEST_INFO( "Task 2 running" ); ercd = get_tid( &scratch ); CYG_TEST_CHECK( E_OK == ercd, "get_tid bad ercd" ); - CYG_TEST_CHECK( 2 == scratch, "tid not 3" ); + CYG_TEST_CHECK( 2 == scratch, "tid not 2" ); if ( 222 != arg ) CYG_TEST_FAIL( "Task 2 arg not 222" ); body(2); diff --git a/packages/devs/wallclock/current/ChangeLog b/packages/devs/wallclock/current/ChangeLog --- a/packages/devs/wallclock/current/ChangeLog +++ b/packages/devs/wallclock/current/ChangeLog @@ -126,11 +126,11 @@ Wed Jul 22 21:04:15 1998 Jonathan Larmo // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/devs/wallclock/current/include/pkgconf/wallclock.h b/packages/devs/wallclock/current/include/pkgconf/wallclock.h --- a/packages/devs/wallclock/current/include/pkgconf/wallclock.h +++ b/packages/devs/wallclock/current/include/pkgconf/wallclock.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/devs/wallclock/current/include/wallclock.hxx b/packages/devs/wallclock/current/include/wallclock.hxx --- a/packages/devs/wallclock/current/include/wallclock.hxx +++ b/packages/devs/wallclock/current/include/wallclock.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/devs/wallclock/current/src/PKGconf.mak b/packages/devs/wallclock/current/src/PKGconf.mak --- a/packages/devs/wallclock/current/src/PKGconf.mak +++ b/packages/devs/wallclock/current/src/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/devs/wallclock/current/src/emulate.cxx b/packages/devs/wallclock/current/src/emulate.cxx --- a/packages/devs/wallclock/current/src/emulate.cxx +++ b/packages/devs/wallclock/current/src/emulate.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/devs/wallclock/current/tests/PKGconf.mak b/packages/devs/wallclock/current/tests/PKGconf.mak --- a/packages/devs/wallclock/current/tests/PKGconf.mak +++ b/packages/devs/wallclock/current/tests/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/devs/wallclock/current/tests/wallclock.cxx b/packages/devs/wallclock/current/tests/wallclock.cxx --- a/packages/devs/wallclock/current/tests/wallclock.cxx +++ b/packages/devs/wallclock/current/tests/wallclock.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/devs/watchdog/current/ChangeLog b/packages/devs/watchdog/current/ChangeLog --- a/packages/devs/watchdog/current/ChangeLog +++ b/packages/devs/watchdog/current/ChangeLog @@ -200,11 +200,11 @@ 1998-07-29 Nick Garnett + + * src/vectors.S: Treat ROM startup+ROM monitor as STUBS startup. + + * src/arm.ld: Changed PID BE workaround to work with ROM startup. + Not just when building stubs. + 1999-12-16 Gary Thomas * src/arm.ld: Include all SRAM (*.sram*) sections. @@ -633,11 +640,11 @@ 1998-10-16 Bart Veer + STARTUP(vectors.o) ENTRY(reset_vector) #ifdef EXTRAS @@ -41,8 +42,8 @@ GROUP(libtarget.a libgcc.a) OUTPUT_FORMAT(elf32-bigarm) #endif -#if defined(CYG_HAL_STARTUP_STUBS) \ - && defined(CYGPKG_HAL_ARM_PID) \ +#if defined(CYG_HAL_STARTUP_ROM) \ + && defined(CYGPKG_HAL_ARM_PID) \ && defined(__ARMEB__) // Note: This is only needed when the PID board is used in BE mode without // the proper ROM controller part. @@ -53,12 +54,12 @@ OUTPUT_FORMAT(elf32-bigarm) // This does not happen on ROM access (unless the proper ROM controller // is used). // -// This is matched in the PID stubs.ldi file which does not use the -// RODATA macros. #define MERGE_IN_RODATA *(.rodata*) +#define CYGPRI_PID_BE_WORKAROUND #else // Keep RODATA in separate sections. #define MERGE_IN_RODATA +#undef CYGPRI_PID_BE_WORKAROUND #endif #define ALIGN_LMA 4 @@ -96,6 +97,10 @@ OUTPUT_FORMAT(elf32-bigarm) { FORCE_OUTPUT; *(.fini) } \ > _region_ +#if defined(CYGPRI_PID_BE_WORKAROUND) +#define SECTION_rodata(_region_, _vma_, _lma_) +#define SECTION_rodata1(_region_, _vma_, _lma_) +#else #define SECTION_rodata(_region_, _vma_, _lma_) \ .rodata _vma_ : _lma_ \ { FORCE_OUTPUT; *(.rodata*) } \ @@ -105,6 +110,7 @@ OUTPUT_FORMAT(elf32-bigarm) .rodata1 _vma_ : _lma_ \ { FORCE_OUTPUT; *(.rodata1) } \ > _region_ +#endif // CYGPRI_PID_BE_WORKAROUND #define SECTION_fixup(_region_, _vma_, _lma_) \ .fixup _vma_ : _lma_ \ diff --git a/packages/hal/arm/arch/current/src/arm_stub.c b/packages/hal/arm/arch/current/src/arm_stub.c --- a/packages/hal/arm/arch/current/src/arm_stub.c +++ b/packages/hal/arm/arch/current/src/arm_stub.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/arch/current/src/context.S b/packages/hal/arm/arch/current/src/context.S --- a/packages/hal/arm/arch/current/src/context.S +++ b/packages/hal/arm/arch/current/src/context.S @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/arch/current/src/hal_misc.c b/packages/hal/arm/arch/current/src/hal_misc.c --- a/packages/hal/arm/arch/current/src/hal_misc.c +++ b/packages/hal/arm/arch/current/src/hal_misc.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/arch/current/src/hal_mk_defs.c b/packages/hal/arm/arch/current/src/hal_mk_defs.c --- a/packages/hal/arm/arch/current/src/hal_mk_defs.c +++ b/packages/hal/arm/arch/current/src/hal_mk_defs.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/arch/current/src/vectors.S b/packages/hal/arm/arch/current/src/vectors.S --- a/packages/hal/arm/arch/current/src/vectors.S +++ b/packages/hal/arm/arch/current/src/vectors.S @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. @@ -324,7 +324,7 @@ 2: .global reset_platform .type reset_platform,function reset_platform: -#ifdef CYG_HAL_STARTUP_STUBS +#if defined(CYG_HAL_STARTUP_STUBS) || defined(CYGSEM_HAL_ROM_MONITOR) // initialize CPSR (machine state register) mov r0,#(CPSR_IRQ_DISABLE|CPSR_FIQ_DISABLE|CPSR_SUPERVISOR_MODE) msr cpsr,r0 diff --git a/packages/hal/arm/arch/current/tests/PKGconf.mak b/packages/hal/arm/arch/current/tests/PKGconf.mak --- a/packages/hal/arm/arch/current/tests/PKGconf.mak +++ b/packages/hal/arm/arch/current/tests/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/hal/arm/cma230/current/ChangeLog b/packages/hal/arm/cma230/current/ChangeLog --- a/packages/hal/arm/cma230/current/ChangeLog +++ b/packages/hal/arm/cma230/current/ChangeLog @@ -93,11 +93,11 @@ 1999-06-04 Gary Thomas + + * misc/prog_flash.c (program_flash): Added expected argument. + +2000-01-31 Gary Thomas + + * tests/dram_test.c: Decrease total number of runs to keep test + farm happy. + + * src/edb7xxx_misc.c (hal_clock_reset): Increase DRAM 'idle' time + to give marginal hardware a chance. + 2000-01-03 Gary Thomas * src/edb7xxx_misc.c: Need to re-enable FIQ during software "refresh", @@ -357,11 +369,11 @@ 1999-05-20 Gary Thomas 37000) { int i; - for (i = 0; i < (CYGHWR_HAL_ARM_EDB7XXX_PROCESSOR_CLOCK*2)/30; i++) ; // approx 250 us + for (i = 0; i < (CYGHWR_HAL_ARM_EDB7XXX_PROCESSOR_CLOCK*2)/24; i++) ; // approx 300 us } #endif } diff --git a/packages/hal/arm/edb7xxx/current/src/hal_diag.c b/packages/hal/arm/edb7xxx/current/src/hal_diag.c --- a/packages/hal/arm/edb7xxx/current/src/hal_diag.c +++ b/packages/hal/arm/edb7xxx/current/src/hal_diag.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/edb7xxx/current/src/plf_stub.c b/packages/hal/arm/edb7xxx/current/src/plf_stub.c --- a/packages/hal/arm/edb7xxx/current/src/plf_stub.c +++ b/packages/hal/arm/edb7xxx/current/src/plf_stub.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/edb7xxx/current/support/io.c b/packages/hal/arm/edb7xxx/current/support/io.c --- a/packages/hal/arm/edb7xxx/current/support/io.c +++ b/packages/hal/arm/edb7xxx/current/support/io.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/edb7xxx/current/tests/PKGconf.mak b/packages/hal/arm/edb7xxx/current/tests/PKGconf.mak --- a/packages/hal/arm/edb7xxx/current/tests/PKGconf.mak +++ b/packages/hal/arm/edb7xxx/current/tests/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/hal/arm/edb7xxx/current/tests/dram_test.c b/packages/hal/arm/edb7xxx/current/tests/dram_test.c --- a/packages/hal/arm/edb7xxx/current/tests/dram_test.c +++ b/packages/hal/arm/edb7xxx/current/tests/dram_test.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. @@ -59,7 +59,7 @@ int total_errors; int run_errors; int error_count; #define MAX_ERRORS 5 -#define NUM_RUNS 25 +#define NUM_RUNS 12 #define REFRESH_TIME 5 int decay_time[] = { 50, 100, 200, 500, 1000 }; diff --git a/packages/hal/arm/pid/current/ChangeLog b/packages/hal/arm/pid/current/ChangeLog --- a/packages/hal/arm/pid/current/ChangeLog +++ b/packages/hal/arm/pid/current/ChangeLog @@ -1,3 +1,38 @@ +2000-02-01 Jesper Skov + + * include/plf_stub.h: Changes due to STUBS startup removal. + +2000-01-28 Jesper Skov + + * include/pkgconf/mlt_arm_pid9_ram.h: + * include/pkgconf/mlt_arm_pid9_ram.ldi: + * include/pkgconf/mlt_arm_pid9_ram.mlt: + * include/pkgconf/mlt_arm_pid9_rom.h: + * include/pkgconf/mlt_arm_pid9_rom.ldi: + * include/pkgconf/mlt_arm_pid9_rom.mlt: + * include/pkgconf/mlt_arm_pid9_stubs.h: + * include/pkgconf/mlt_arm_pid9_stubs.ldi: + * include/pkgconf/mlt_arm_pid9_stubs.mlt: + * include/pkgconf/mlt_arm_pidBE_ram.h: + * include/pkgconf/mlt_arm_pidBE_ram.ldi: + * include/pkgconf/mlt_arm_pidBE_ram.mlt: + * include/pkgconf/mlt_arm_pidBE_rom.h: + * include/pkgconf/mlt_arm_pidBE_rom.ldi: + * include/pkgconf/mlt_arm_pidBE_rom.mlt: + * include/pkgconf/mlt_arm_pidBE_stubs.h: + * include/pkgconf/mlt_arm_pidBE_stubs.ldi: + * include/pkgconf/mlt_arm_pidBE_stubs.mlt: + * include/pkgconf/mlt_arm_pid_ram.h: + * include/pkgconf/mlt_arm_pid_ram.ldi: + * include/pkgconf/mlt_arm_pid_ram.mlt: + * include/pkgconf/mlt_arm_pid_rom.h: + * include/pkgconf/mlt_arm_pid_rom.ldi: + * include/pkgconf/mlt_arm_pid_rom.mlt: + * include/pkgconf/mlt_arm_pid_stubs.h: + * include/pkgconf/mlt_arm_pid_stubs.ldi: + * include/pkgconf/mlt_arm_pid_stubs.mlt: + Increase memory reserved for stub to 32kB. + 1999-12-15 Jonathan Larmour * misc/STUBS_config: updated patch due to hal.h changes @@ -364,11 +399,11 @@ 1998-11-18 Gary Thomas #define CYGMEM_REGION_ram (0x800) -#define CYGMEM_REGION_ram_SIZE (0x3800) +#define CYGMEM_REGION_ram_SIZE (0x7800) #define CYGMEM_REGION_ram_ATTR (CYGMEM_REGION_ATTR_R | CYGMEM_REGION_ATTR_W) #define CYGMEM_REGION_rom (0x4000000) #define CYGMEM_REGION_rom_SIZE (0x80000) diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid9_stubs.ldi b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid9_stubs.ldi --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid9_stubs.ldi +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid9_stubs.ldi @@ -7,11 +7,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. @@ -33,7 +33,7 @@ MEMORY { rom : ORIGIN = 0x04000000, LENGTH = 0x80000 - ram : ORIGIN = 0x00000800, LENGTH = 0x03800 + ram : ORIGIN = 0x00000800, LENGTH = 0x07800 } SECTIONS diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid9_stubs.mlt b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid9_stubs.mlt --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid9_stubs.mlt +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid9_stubs.mlt @@ -1,5 +1,5 @@ !version 0 -region ram 800 3800 0 ! +region ram 800 7800 0 ! region rom 4000000 80000 1 ! section data 0 1 1 1 1 1 0 0 800 bss ! section bss 0 4 0 1 0 0 0 0 ! diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_ram.h b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_ram.h --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_ram.h +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_ram.h @@ -10,4 +10,4 @@ #define CYGMEM_REGION_ram_ATTR (CYGMEM_REGION_ATTR_R | CYGMEM_REGION_ATTR_W) extern char CYG_LABEL_NAME (_reserved) []; #define CYGMEM_SECTION_reserved (CYG_LABEL_NAME (_reserved)) -#define CYGMEM_SECTION_reserved_SIZE (0x4000) +#define CYGMEM_SECTION_reserved_SIZE (0x8000) diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_ram.ldi b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_ram.ldi --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_ram.ldi +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_ram.ldi @@ -10,7 +10,7 @@ MEMORY SECTIONS { SECTIONS_BEGIN - __reserved = 0; . = __reserved + 0x4000; + __reserved = 0; . = __reserved + 0x8000; SECTION_rom_vectors (ram, ALIGN (0x1), LMA_EQ_VMA) SECTION_text (ram, ALIGN (0x1), LMA_EQ_VMA) SECTION_fini (ram, ALIGN (0x1), LMA_EQ_VMA) diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_ram.mlt b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_ram.mlt --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_ram.mlt +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_ram.mlt @@ -1,6 +1,6 @@ version 0 region ram 0 80000 0 ! -section reserved 4000 1 0 0 1 1 1 1 0 0 rom_vectors rom_vectors ! +section reserved 8000 1 0 0 1 1 1 1 0 0 rom_vectors rom_vectors ! section rom_vectors 0 1 0 1 0 1 0 1 text text ! section text 0 1 0 1 0 1 0 1 fini fini ! section fini 0 1 0 1 0 1 0 1 rodata rodata ! diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_stubs.h b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_stubs.h --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_stubs.h +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_stubs.h @@ -6,7 +6,7 @@ #include #define CYGMEM_REGION_ram (0x800) -#define CYGMEM_REGION_ram_SIZE (0x3800) +#define CYGMEM_REGION_ram_SIZE (0x7800) #define CYGMEM_REGION_ram_ATTR (CYGMEM_REGION_ATTR_R | CYGMEM_REGION_ATTR_W) #define CYGMEM_REGION_rom (0x4000000) #define CYGMEM_REGION_rom_SIZE (0x80000) diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_stubs.ldi b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_stubs.ldi --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_stubs.ldi +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_stubs.ldi @@ -7,11 +7,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. @@ -34,7 +34,7 @@ MEMORY { rom : ORIGIN = 0x04000000, LENGTH = 0x80000 - ram : ORIGIN = 0x00000800, LENGTH = 0x03800 + ram : ORIGIN = 0x00000800, LENGTH = 0x07800 } SECTIONS diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_stubs.mlt b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_stubs.mlt --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_stubs.mlt +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pidBE_stubs.mlt @@ -1,5 +1,5 @@ version 0 -region ram 800 3800 0 ! +region ram 800 7800 0 ! region rom 4000000 80000 1 ! section data 0 1 1 1 1 1 0 0 800 bss ! section bss 0 4 0 1 0 0 0 0 ! diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_ram.h b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_ram.h --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_ram.h +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_ram.h @@ -10,4 +10,4 @@ #define CYGMEM_REGION_ram_ATTR (CYGMEM_REGION_ATTR_R | CYGMEM_REGION_ATTR_W) extern char CYG_LABEL_NAME (_reserved) []; #define CYGMEM_SECTION_reserved (CYG_LABEL_NAME (_reserved)) -#define CYGMEM_SECTION_reserved_SIZE (0x4000) +#define CYGMEM_SECTION_reserved_SIZE (0x8000) diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_ram.ldi b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_ram.ldi --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_ram.ldi +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_ram.ldi @@ -10,7 +10,7 @@ MEMORY SECTIONS { SECTIONS_BEGIN - __reserved = 0; . = __reserved + 0x4000; + __reserved = 0; . = __reserved + 0x8000; SECTION_rom_vectors (ram, ALIGN (0x1), LMA_EQ_VMA) SECTION_text (ram, ALIGN (0x1), LMA_EQ_VMA) SECTION_fini (ram, ALIGN (0x1), LMA_EQ_VMA) diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_ram.mlt b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_ram.mlt --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_ram.mlt +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_ram.mlt @@ -1,6 +1,6 @@ version 0 region ram 0 80000 0 ! -section reserved 4000 1 0 0 1 1 1 1 0 0 rom_vectors rom_vectors ! +section reserved 8000 1 0 0 1 1 1 1 0 0 rom_vectors rom_vectors ! section rom_vectors 0 1 0 1 0 1 0 1 text text ! section text 0 1 0 1 0 1 0 1 fini fini ! section fini 0 1 0 1 0 1 0 1 rodata rodata ! diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_stubs.h b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_stubs.h --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_stubs.h +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_stubs.h @@ -6,7 +6,7 @@ #include #define CYGMEM_REGION_ram (0x800) -#define CYGMEM_REGION_ram_SIZE (0x3800) +#define CYGMEM_REGION_ram_SIZE (0x7800) #define CYGMEM_REGION_ram_ATTR (CYGMEM_REGION_ATTR_R | CYGMEM_REGION_ATTR_W) #define CYGMEM_REGION_rom (0x4000000) #define CYGMEM_REGION_rom_SIZE (0x80000) diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_stubs.ldi b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_stubs.ldi --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_stubs.ldi +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_stubs.ldi @@ -7,11 +7,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. @@ -33,7 +33,7 @@ MEMORY { rom : ORIGIN = 0x04000000, LENGTH = 0x80000 - ram : ORIGIN = 0x00000800, LENGTH = 0x03800 + ram : ORIGIN = 0x00000800, LENGTH = 0x07800 } SECTIONS diff --git a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_stubs.mlt b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_stubs.mlt --- a/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_stubs.mlt +++ b/packages/hal/arm/pid/current/include/pkgconf/mlt_arm_pid_stubs.mlt @@ -1,5 +1,5 @@ version 0 -region ram 800 3800 0 ! +region ram 800 7800 0 ! region rom 4000000 80000 1 ! section data 0 1 1 1 1 1 0 0 800 bss ! section bss 0 4 0 1 0 0 0 0 ! diff --git a/packages/hal/arm/pid/current/include/plf_stub.h b/packages/hal/arm/pid/current/include/plf_stub.h --- a/packages/hal/arm/pid/current/include/plf_stub.h +++ b/packages/hal/arm/pid/current/include/plf_stub.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. @@ -74,7 +74,7 @@ extern int hal_pid_interruptible(int); //---------------------------------------------------------------------------- // Reset. -#ifdef CYG_HAL_STARTUP_STUBS +#ifdef CYGSEM_HAL_ROM_MONITOR // Just call the ROM's entry point. Not as safe as a reset, but the PID // doesn't have a watchdog, so this'll have to do. externC void reset_vector(void); diff --git a/packages/hal/arm/pid/current/misc/Notes b/packages/hal/arm/pid/current/misc/Notes --- a/packages/hal/arm/pid/current/misc/Notes +++ b/packages/hal/arm/pid/current/misc/Notes @@ -3,11 +3,11 @@ ------------------------------------------- The contents of this file are subject to the Red Hat eCos Public License - Version 1.0 (the "License"); you may not use this file except in + Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://sourceware.cygnus.com/ecos + http://www.redhat.com/ - Software distributed under the License is distributed on an + Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. diff --git a/packages/hal/arm/pid/current/misc/PKGconf.mak b/packages/hal/arm/pid/current/misc/PKGconf.mak --- a/packages/hal/arm/pid/current/misc/PKGconf.mak +++ b/packages/hal/arm/pid/current/misc/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/hal/arm/pid/current/misc/dl.c b/packages/hal/arm/pid/current/misc/dl.c --- a/packages/hal/arm/pid/current/misc/dl.c +++ b/packages/hal/arm/pid/current/misc/dl.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/pid/current/misc/flash.c b/packages/hal/arm/pid/current/misc/flash.c --- a/packages/hal/arm/pid/current/misc/flash.c +++ b/packages/hal/arm/pid/current/misc/flash.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/pid/current/misc/gdb_module.c b/packages/hal/arm/pid/current/misc/gdb_module.c --- a/packages/hal/arm/pid/current/misc/gdb_module.c +++ b/packages/hal/arm/pid/current/misc/gdb_module.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/pid/current/misc/prog_flash.c b/packages/hal/arm/pid/current/misc/prog_flash.c --- a/packages/hal/arm/pid/current/misc/prog_flash.c +++ b/packages/hal/arm/pid/current/misc/prog_flash.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/pid/current/src/PKGconf.mak b/packages/hal/arm/pid/current/src/PKGconf.mak --- a/packages/hal/arm/pid/current/src/PKGconf.mak +++ b/packages/hal/arm/pid/current/src/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/hal/arm/pid/current/src/hal_diag.c b/packages/hal/arm/pid/current/src/hal_diag.c --- a/packages/hal/arm/pid/current/src/hal_diag.c +++ b/packages/hal/arm/pid/current/src/hal_diag.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/pid/current/src/pid_misc.c b/packages/hal/arm/pid/current/src/pid_misc.c --- a/packages/hal/arm/pid/current/src/pid_misc.c +++ b/packages/hal/arm/pid/current/src/pid_misc.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/pid/current/src/plf_stub.c b/packages/hal/arm/pid/current/src/plf_stub.c --- a/packages/hal/arm/pid/current/src/plf_stub.c +++ b/packages/hal/arm/pid/current/src/plf_stub.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/hal/arm/pid/current/tests/PKGconf.mak b/packages/hal/arm/pid/current/tests/PKGconf.mak --- a/packages/hal/arm/pid/current/tests/PKGconf.mak +++ b/packages/hal/arm/pid/current/tests/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/hal/common/current/ChangeLog b/packages/hal/common/current/ChangeLog --- a/packages/hal/common/current/ChangeLog +++ b/packages/hal/common/current/ChangeLog @@ -760,11 +760,11 @@ 1998-08-18 Nick Garnett + + * include/file.h: + * src/io_file.c: New file(s) + 1999-04-28 Bart Veer * src/PKGconf.mak (EXTRAS_COMPILE): @@ -50,11 +55,11 @@ 1999-02-25 Gary Thomas , , + +#include +#include + +#define NFILE CYGPKG_IO_NFILE + +struct iovec { + void *iov_base; /* Base address. */ + CYG_ADDRWORD iov_len; /* Length. */ +}; + +enum uio_rw { UIO_READ, UIO_WRITE }; + +/* Segment flag values. */ +enum uio_seg { + UIO_USERSPACE, /* from user data space */ + UIO_SYSSPACE /* from system space */ +}; + +struct uio { + struct iovec *uio_iov; /* pointer to array of iovecs */ + int uio_iovcnt; /* number of iovecs in array */ + CYG_ADDRWORD uio_offset; /* offset into file this uio corresponds to */ + CYG_ADDRWORD uio_resid; /* residual i/o count */ + enum uio_seg uio_segflg; /* see above */ + enum uio_rw uio_rw; /* see above */ +}; + +/* + * Limits + */ +#define UIO_SMALLIOV 8 /* 8 on stack, else malloc */ + +// Description of open file +struct file { + short f_flag; /* file state */ + short f_type; /* descriptor type */ + struct fileops { + int (*fo_read)(struct file *fp, struct uio *uio); + int (*fo_write)(struct file *fp, struct uio *uio); + int (*fo_ioctl)(struct file *fp, CYG_ADDRWORD com, + CYG_ADDRWORD data); + int (*fo_select)(struct file *fp, int which); + int (*fo_close)(struct file *fp); + } *f_ops; + CYG_ADDRWORD f_offset; + CYG_ADDRWORD f_data; /* vnode or socket */ +}; + +// File states +#define FREAD 0x01 +#define FWRITE 0x02 +#define FALLOC 0x80 // File is "busy", i.e. allocated + +// Type of "file" +#define DTYPE_VNODE 1 /* file */ +#define DTYPE_SOCKET 2 /* communications endpoint */ +#define DTYPE_PIPE 3 /* pipe */ + +externC cyg_bool getfp(int fdes, struct file **fp); + +#endif // _CYG_IO_FILE_H_ diff --git a/packages/io/common/current/include/io.h b/packages/io/common/current/include/io.h --- a/packages/io/common/current/include/io.h +++ b/packages/io/common/current/include/io.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/common/current/include/io_diag.h b/packages/io/common/current/include/io_diag.h --- a/packages/io/common/current/include/io_diag.h +++ b/packages/io/common/current/include/io_diag.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/common/current/include/pkgconf/io.h b/packages/io/common/current/include/pkgconf/io.h --- a/packages/io/common/current/include/pkgconf/io.h +++ b/packages/io/common/current/include/pkgconf/io.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/common/current/src/PKGconf.mak b/packages/io/common/current/src/PKGconf.mak --- a/packages/io/common/current/src/PKGconf.mak +++ b/packages/io/common/current/src/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/io/common/current/src/io_diag.c b/packages/io/common/current/src/io_diag.c --- a/packages/io/common/current/src/io_diag.c +++ b/packages/io/common/current/src/io_diag.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/common/current/src/io_file.c b/packages/io/common/current/src/io_file.c new file mode 100644 --- /dev/null +++ b/packages/io/common/current/src/io_file.c @@ -0,0 +1,98 @@ +//========================================================================== +// +// io/common/io_file.c +// +// High-level file I/O support. +// +//========================================================================== +//####COPYRIGHTBEGIN#### +// +// ------------------------------------------- +// The contents of this file are subject to the Red Hat eCos Public License +// Version 1.1 (the "License"); you may not use this file except in +// compliance with the License. You may obtain a copy of the License at +// http://www.redhat.com/ +// +// Software distributed under the License is distributed on an "AS IS" +// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the +// License for the specific language governing rights and limitations under +// the License. +// +// The Original Code is eCos - Embedded Configurable Operating System, +// released September 30, 1998. +// +// The Initial Developer of the Original Code is Red Hat. +// Portions created by Red Hat are +// Copyright (C) 1998, 1999, 2000 Red Hat, Inc. +// All Rights Reserved. +// ------------------------------------------- +// +//####COPYRIGHTEND#### +//========================================================================== +//#####DESCRIPTIONBEGIN#### +// +// Author(s): gthomas +// Contributors: gthomas +// Date: 2000-01-10 +// Purpose: +// Description: +// +// +//####DESCRIPTIONEND#### +// +//========================================================================== + + +// File I/O support + +#include +#include +#include + +struct file fds[CYGPKG_IO_NFILE]; + +// +// This function allcates a file "slot". +// +int +falloc(struct file **fp, int *fd) +{ + int i; + struct file *f; + f = &fds[0]; + for (i = 0; i < CYGPKG_IO_NFILE; i++, f++) { + if (f->f_flag == 0) { + f->f_flag = FALLOC; + *fp = f; + *fd = i; + return 0; + } + } + return -EMFILE; // No more files +} + +// +// This function is used to return a file slot. +// +void +ffree(struct file *fp) +{ + fp->f_flag = 0; // Mark free +} + +// +// This function provides the mapping from a file descriptor (small +// integer used by application code) to the corresponding file slot. +cyg_bool +getfp(int fd, struct file **fp) +{ + struct file *f; + if (fd >= CYGPKG_IO_NFILE) + return -1; + f = &fds[fd]; + if (f->f_flag == 0) + return -1; + *fp = f; + return 0; +} + diff --git a/packages/io/common/current/src/ioinit.cxx b/packages/io/common/current/src/ioinit.cxx --- a/packages/io/common/current/src/ioinit.cxx +++ b/packages/io/common/current/src/ioinit.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/common/current/src/iosys.c b/packages/io/common/current/src/iosys.c --- a/packages/io/common/current/src/iosys.c +++ b/packages/io/common/current/src/iosys.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/pci/current/ChangeLog b/packages/io/pci/current/ChangeLog --- a/packages/io/pci/current/ChangeLog +++ b/packages/io/pci/current/ChangeLog @@ -129,11 +129,11 @@ 1999-08-12 Jesper Skov + + * src/arm/aeb_serial.h: Rename lower case register macros to REG_ upper + case macros + + * src/arm/aeb_serial.c: Update to reflect above + +2000-01-28 Gary Thomas + + * src/common/tty.c (tty_read): Fix problem with backspace at start + of line (size must be 'signed' for compare to work). + 2000-01-17 Gary Thomas * src/common/tty.c (tty_read): Avoid echoing "backspace/erase" at @@ -872,11 +884,11 @@ 1999-03-03 Gary Thomas baud]; unsigned char _lcr, _ier; if (baud_divisor == 0) return false; - _ier = port->ier; - port->ier = 0; // Disable port interrupts while changing hardware + _ier = port->REG_IER; + port->REG_IER = 0; // Disable port interrupts while changing hardware _lcr = select_word_length[new_config->word_length - CYGNUM_SERIAL_WORD_LENGTH_5] | select_stop_bits[new_config->stop] | select_parity[new_config->parity]; - port->lcr = _lcr; - port->lcr |= LCR_DL; - port->mdl = baud_divisor >> 8; - port->ldl = baud_divisor & 0xFF; - port->lcr &= ~LCR_DL; + port->REG_LCR = _lcr; + port->REG_LCR |= LCR_DL; + port->REG_MDL = baud_divisor >> 8; + port->REG_LDL = baud_divisor & 0xFF; + port->REG_LCR &= ~LCR_DL; if (init) { - port->fcr = 0x07; // Enable and clear FIFO + port->REG_FCR = 0x07; // Enable and clear FIFO if (chan->out_cbuf.len != 0) { - port->ier = IER_RCV; + port->REG_IER = IER_RCV; } else { - port->ier = 0; + port->REG_IER = 0; } - port->mcr = MCR_INT|MCR_DTR|MCR_RTS; // Master interrupt enable + port->REG_MCR = MCR_INT|MCR_DTR|MCR_RTS; // Master interrupt enable } else { - port->ier = _ier; + port->REG_IER = _ier; } if (new_config != &chan->config) { chan->config = *new_config; @@ -241,9 +241,9 @@ aeb_serial_putc(serial_channel *chan, un { aeb_serial_info *aeb_chan = (aeb_serial_info *)chan->dev_priv; volatile struct serial_port *port = (volatile struct serial_port *)aeb_chan->base; - if (port->lsr & LSR_THE) { + if (port->REG_LSR & LSR_THE) { // Transmit buffer is empty - port->thr = c; + port->REG_THR = c; return true; } else { // No space @@ -258,8 +258,8 @@ aeb_serial_getc(serial_channel *chan) unsigned char c; aeb_serial_info *aeb_chan = (aeb_serial_info *)chan->dev_priv; volatile struct serial_port *port = (volatile struct serial_port *)aeb_chan->base; - while ((port->lsr & LSR_RSR) == 0) ; // Wait for char - c = port->rhr; + while ((port->REG_LSR & LSR_RSR) == 0) ; // Wait for char + c = port->REG_RHR; return c; } @@ -276,7 +276,7 @@ aeb_serial_start_xmit(serial_channel *ch { aeb_serial_info *aeb_chan = (aeb_serial_info *)chan->dev_priv; volatile struct serial_port *port = (volatile struct serial_port *)aeb_chan->base; - port->ier |= IER_XMT; // Enable xmit interrupt + port->REG_IER |= IER_XMT; // Enable xmit interrupt } // Disable the transmitter on the device @@ -285,7 +285,7 @@ aeb_serial_stop_xmit(serial_channel *cha { aeb_serial_info *aeb_chan = (aeb_serial_info *)chan->dev_priv; volatile struct serial_port *port = (volatile struct serial_port *)aeb_chan->base; - port->ier &= ~IER_XMT; // Disable xmit interrupt + port->REG_IER &= ~IER_XMT; // Disable xmit interrupt } // Serial I/O - low level interrupt handler (ISR) @@ -307,11 +307,11 @@ aeb_serial_DSR(cyg_vector_t vector, cyg_ aeb_serial_info *aeb_chan = (aeb_serial_info *)chan->dev_priv; volatile struct serial_port *port = (volatile struct serial_port *)aeb_chan->base; unsigned char isr; - isr = port->isr & 0x0E; + isr = port->REG_ISR & 0x0E; if (isr == ISR_Tx) { (chan->callbacks->xmt_char)(chan); } else if (isr == ISR_Rx) { - (chan->callbacks->rcv_char)(chan, port->rhr); + (chan->callbacks->rcv_char)(chan, port->REG_RHR); } cyg_drv_interrupt_unmask(aeb_chan->int_num); } diff --git a/packages/io/serial/current/src/arm/aeb_serial.h b/packages/io/serial/current/src/arm/aeb_serial.h --- a/packages/io/serial/current/src/arm/aeb_serial.h +++ b/packages/io/serial/current/src/arm/aeb_serial.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. @@ -50,23 +50,23 @@ struct serial_port { unsigned char _byte[32]; }; -#define reg(n) _byte[n*4] +#define REG(n) _byte[n*4] // Receive control registers -#define rhr reg(0) // Receive holding register -#define isr reg(2) // Interrupt status register -#define lsr reg(5) // Line status register -#define msr reg(6) // Modem status register -#define scr reg(7) // Scratch register +#define REG_RHR REG(0) // Receive holding register +#define REG_ISR REG(2) // Interrupt status register +#define REG_LSR REG(5) // Line status register +#define REG_MSR REG(6) // Modem status register +#define REG_SCR REG(7) // Scratch register // Transmit control registers -#define thr reg(0) // Transmit holding register -#define ier reg(1) // Interrupt enable register -#define fcr reg(2) // FIFO control register -#define lcr reg(3) // Line control register -#define mcr reg(4) // Modem control register -#define ldl reg(0) // LSB of baud rate -#define mdl reg(1) // MSB of baud rate +#define REG_THR REG(0) // Transmit holding register +#define REG_IER REG(1) // Interrupt enable register +#define REG_FCR REG(2) // FIFO control register +#define REG_LCR REG(3) // Line control register +#define REG_MCR REG(4) // Modem control register +#define REG_LDL REG(0) // LSB of baud rate +#define REG_MDL REG(1) // MSB of baud rate // Interrupt Enable Register #define IER_RCV 0x01 diff --git a/packages/io/serial/current/src/arm/cma230_serial.c b/packages/io/serial/current/src/arm/cma230_serial.c --- a/packages/io/serial/current/src/arm/cma230_serial.c +++ b/packages/io/serial/current/src/arm/cma230_serial.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/arm/cma230_serial.h b/packages/io/serial/current/src/arm/cma230_serial.h --- a/packages/io/serial/current/src/arm/cma230_serial.h +++ b/packages/io/serial/current/src/arm/cma230_serial.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/arm/edb7xxx_serial.c b/packages/io/serial/current/src/arm/edb7xxx_serial.c --- a/packages/io/serial/current/src/arm/edb7xxx_serial.c +++ b/packages/io/serial/current/src/arm/edb7xxx_serial.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/arm/edb7xxx_serial.h b/packages/io/serial/current/src/arm/edb7xxx_serial.h --- a/packages/io/serial/current/src/arm/edb7xxx_serial.h +++ b/packages/io/serial/current/src/arm/edb7xxx_serial.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/arm/pid_serial.h b/packages/io/serial/current/src/arm/pid_serial.h --- a/packages/io/serial/current/src/arm/pid_serial.h +++ b/packages/io/serial/current/src/arm/pid_serial.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/arm/pid_serial_with_ints.c b/packages/io/serial/current/src/arm/pid_serial_with_ints.c --- a/packages/io/serial/current/src/arm/pid_serial_with_ints.c +++ b/packages/io/serial/current/src/arm/pid_serial_with_ints.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/common/haldiag.c b/packages/io/serial/current/src/common/haldiag.c --- a/packages/io/serial/current/src/common/haldiag.c +++ b/packages/io/serial/current/src/common/haldiag.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/common/serial.c b/packages/io/serial/current/src/common/serial.c --- a/packages/io/serial/current/src/common/serial.c +++ b/packages/io/serial/current/src/common/serial.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/common/tty.c b/packages/io/serial/current/src/common/tty.c --- a/packages/io/serial/current/src/common/tty.c +++ b/packages/io/serial/current/src/common/tty.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. @@ -193,7 +193,8 @@ tty_read(cyg_io_handle_t handle, void *_ cyg_devtab_entry_t *t = (cyg_devtab_entry_t *)handle; struct tty_private_info *priv = (struct tty_private_info *)t->priv; cyg_io_handle_t chan = (cyg_io_handle_t)priv->dev_handle; - cyg_uint32 size, clen; + cyg_uint32 clen; + cyg_int32 size; Cyg_ErrNo res; cyg_uint8 c; cyg_uint8 *buf = (cyg_uint8 *)_buf; diff --git a/packages/io/serial/current/src/mips/tx3904_serial.c b/packages/io/serial/current/src/mips/tx3904_serial.c --- a/packages/io/serial/current/src/mips/tx3904_serial.c +++ b/packages/io/serial/current/src/mips/tx3904_serial.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/mn10300/mn10300_serial.c b/packages/io/serial/current/src/mn10300/mn10300_serial.c --- a/packages/io/serial/current/src/mn10300/mn10300_serial.c +++ b/packages/io/serial/current/src/mn10300/mn10300_serial.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/powerpc/cogent_serial.h b/packages/io/serial/current/src/powerpc/cogent_serial.h --- a/packages/io/serial/current/src/powerpc/cogent_serial.h +++ b/packages/io/serial/current/src/powerpc/cogent_serial.h @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/powerpc/cogent_serial_with_ints.c b/packages/io/serial/current/src/powerpc/cogent_serial_with_ints.c --- a/packages/io/serial/current/src/powerpc/cogent_serial_with_ints.c +++ b/packages/io/serial/current/src/powerpc/cogent_serial_with_ints.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/powerpc/quicc_smc_serial.c b/packages/io/serial/current/src/powerpc/quicc_smc_serial.c --- a/packages/io/serial/current/src/powerpc/quicc_smc_serial.c +++ b/packages/io/serial/current/src/powerpc/quicc_smc_serial.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/powerpc/quicc_smc_serial.h b/packages/io/serial/current/src/powerpc/quicc_smc_serial.h --- a/packages/io/serial/current/src/powerpc/quicc_smc_serial.h +++ b/packages/io/serial/current/src/powerpc/quicc_smc_serial.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/sparclite/sleb_sdtr.c b/packages/io/serial/current/src/sparclite/sleb_sdtr.c --- a/packages/io/serial/current/src/sparclite/sleb_sdtr.c +++ b/packages/io/serial/current/src/sparclite/sleb_sdtr.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/src/sparclite/sleb_sdtr.h b/packages/io/serial/current/src/sparclite/sleb_sdtr.h --- a/packages/io/serial/current/src/sparclite/sleb_sdtr.h +++ b/packages/io/serial/current/src/sparclite/sleb_sdtr.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/tests/PKGconf.mak b/packages/io/serial/current/tests/PKGconf.mak --- a/packages/io/serial/current/tests/PKGconf.mak +++ b/packages/io/serial/current/tests/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/io/serial/current/tests/ser_test_protocol.inl b/packages/io/serial/current/tests/ser_test_protocol.inl --- a/packages/io/serial/current/tests/ser_test_protocol.inl +++ b/packages/io/serial/current/tests/ser_test_protocol.inl @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/tests/serial1.c b/packages/io/serial/current/tests/serial1.c --- a/packages/io/serial/current/tests/serial1.c +++ b/packages/io/serial/current/tests/serial1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/tests/serial2.c b/packages/io/serial/current/tests/serial2.c --- a/packages/io/serial/current/tests/serial2.c +++ b/packages/io/serial/current/tests/serial2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/tests/serial3.c b/packages/io/serial/current/tests/serial3.c --- a/packages/io/serial/current/tests/serial3.c +++ b/packages/io/serial/current/tests/serial3.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/tests/serial4.c b/packages/io/serial/current/tests/serial4.c --- a/packages/io/serial/current/tests/serial4.c +++ b/packages/io/serial/current/tests/serial4.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/tests/serial5.c b/packages/io/serial/current/tests/serial5.c --- a/packages/io/serial/current/tests/serial5.c +++ b/packages/io/serial/current/tests/serial5.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/tests/timeout.inl b/packages/io/serial/current/tests/timeout.inl --- a/packages/io/serial/current/tests/timeout.inl +++ b/packages/io/serial/current/tests/timeout.inl @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/tests/tty1.c b/packages/io/serial/current/tests/tty1.c --- a/packages/io/serial/current/tests/tty1.c +++ b/packages/io/serial/current/tests/tty1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/io/serial/current/tests/tty2.c b/packages/io/serial/current/tests/tty2.c --- a/packages/io/serial/current/tests/tty2.c +++ b/packages/io/serial/current/tests/tty2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/ChangeLog b/packages/kernel/current/ChangeLog --- a/packages/kernel/current/ChangeLog +++ b/packages/kernel/current/ChangeLog @@ -1,3 +1,23 @@ +2000-02-01 Jonathan Larmour + + * tests/tm_basic.cxx (NTEST_THREADS): Reduce further to fit on small + targets + (NMBOXES): Likewise + (NCOUNTERS): Likewise + + * src/common/clock.cxx: Rework last change - change types of + clock_dsr_read and delta to unsigned instead + +2000-01-31 Jonathan Larmour + + * src/common/clock.cxx (isr): Use HAL_CLOCK_LATENCY, not HAL_CLOCK_READ + (dsr): Likewise + +2000-01-31 Jesper Skov + + * tests/tm_basic.cxx: Use CYG_TEST_NA insetad of PASS when not + applicable. + 2000-01-26 Hugo Tyson * include/clock.hxx (class Cyg_Clock): Add members to convert to @@ -2551,11 +2571,11 @@ Wed Mar 11 13:18:17 GMT 1998 Chris Prov // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/bitmap.hxx b/packages/kernel/current/include/bitmap.hxx --- a/packages/kernel/current/include/bitmap.hxx +++ b/packages/kernel/current/include/bitmap.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/clock.hxx b/packages/kernel/current/include/clock.hxx --- a/packages/kernel/current/include/clock.hxx +++ b/packages/kernel/current/include/clock.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/clock.inl b/packages/kernel/current/include/clock.inl --- a/packages/kernel/current/include/clock.inl +++ b/packages/kernel/current/include/clock.inl @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/diag.h b/packages/kernel/current/include/diag.h --- a/packages/kernel/current/include/diag.h +++ b/packages/kernel/current/include/diag.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/errors.h b/packages/kernel/current/include/errors.h --- a/packages/kernel/current/include/errors.h +++ b/packages/kernel/current/include/errors.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/except.hxx b/packages/kernel/current/include/except.hxx --- a/packages/kernel/current/include/except.hxx +++ b/packages/kernel/current/include/except.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/flag.hxx b/packages/kernel/current/include/flag.hxx --- a/packages/kernel/current/include/flag.hxx +++ b/packages/kernel/current/include/flag.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/instrmnt.h b/packages/kernel/current/include/instrmnt.h --- a/packages/kernel/current/include/instrmnt.h +++ b/packages/kernel/current/include/instrmnt.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/intr.hxx b/packages/kernel/current/include/intr.hxx --- a/packages/kernel/current/include/intr.hxx +++ b/packages/kernel/current/include/intr.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/kapi.h b/packages/kernel/current/include/kapi.h --- a/packages/kernel/current/include/kapi.h +++ b/packages/kernel/current/include/kapi.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/kapidata.h b/packages/kernel/current/include/kapidata.h --- a/packages/kernel/current/include/kapidata.h +++ b/packages/kernel/current/include/kapidata.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/kernel.hxx b/packages/kernel/current/include/kernel.hxx --- a/packages/kernel/current/include/kernel.hxx +++ b/packages/kernel/current/include/kernel.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/ktypes.h b/packages/kernel/current/include/ktypes.h --- a/packages/kernel/current/include/ktypes.h +++ b/packages/kernel/current/include/ktypes.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/llistt.hxx b/packages/kernel/current/include/llistt.hxx --- a/packages/kernel/current/include/llistt.hxx +++ b/packages/kernel/current/include/llistt.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/lottery.hxx b/packages/kernel/current/include/lottery.hxx --- a/packages/kernel/current/include/lottery.hxx +++ b/packages/kernel/current/include/lottery.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mbox.hxx b/packages/kernel/current/include/mbox.hxx --- a/packages/kernel/current/include/mbox.hxx +++ b/packages/kernel/current/include/mbox.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mboxt.hxx b/packages/kernel/current/include/mboxt.hxx --- a/packages/kernel/current/include/mboxt.hxx +++ b/packages/kernel/current/include/mboxt.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mboxt.inl b/packages/kernel/current/include/mboxt.inl --- a/packages/kernel/current/include/mboxt.inl +++ b/packages/kernel/current/include/mboxt.inl @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mboxt2.hxx b/packages/kernel/current/include/mboxt2.hxx --- a/packages/kernel/current/include/mboxt2.hxx +++ b/packages/kernel/current/include/mboxt2.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mboxt2.inl b/packages/kernel/current/include/mboxt2.inl --- a/packages/kernel/current/include/mboxt2.inl +++ b/packages/kernel/current/include/mboxt2.inl @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/memfixed.hxx b/packages/kernel/current/include/memfixed.hxx --- a/packages/kernel/current/include/memfixed.hxx +++ b/packages/kernel/current/include/memfixed.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mempolt2.hxx b/packages/kernel/current/include/mempolt2.hxx --- a/packages/kernel/current/include/mempolt2.hxx +++ b/packages/kernel/current/include/mempolt2.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mempolt2.inl b/packages/kernel/current/include/mempolt2.inl --- a/packages/kernel/current/include/mempolt2.inl +++ b/packages/kernel/current/include/mempolt2.inl @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mempoolt.hxx b/packages/kernel/current/include/mempoolt.hxx --- a/packages/kernel/current/include/mempoolt.hxx +++ b/packages/kernel/current/include/mempoolt.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mempoolt.inl b/packages/kernel/current/include/mempoolt.inl --- a/packages/kernel/current/include/mempoolt.inl +++ b/packages/kernel/current/include/mempoolt.inl @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/memvar.hxx b/packages/kernel/current/include/memvar.hxx --- a/packages/kernel/current/include/memvar.hxx +++ b/packages/kernel/current/include/memvar.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mfiximpl.hxx b/packages/kernel/current/include/mfiximpl.hxx --- a/packages/kernel/current/include/mfiximpl.hxx +++ b/packages/kernel/current/include/mfiximpl.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mfiximpl.inl b/packages/kernel/current/include/mfiximpl.inl --- a/packages/kernel/current/include/mfiximpl.inl +++ b/packages/kernel/current/include/mfiximpl.inl @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mlqueue.hxx b/packages/kernel/current/include/mlqueue.hxx --- a/packages/kernel/current/include/mlqueue.hxx +++ b/packages/kernel/current/include/mlqueue.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mutex.hxx b/packages/kernel/current/include/mutex.hxx --- a/packages/kernel/current/include/mutex.hxx +++ b/packages/kernel/current/include/mutex.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mvarimpl.hxx b/packages/kernel/current/include/mvarimpl.hxx --- a/packages/kernel/current/include/mvarimpl.hxx +++ b/packages/kernel/current/include/mvarimpl.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/mvarimpl.inl b/packages/kernel/current/include/mvarimpl.inl --- a/packages/kernel/current/include/mvarimpl.inl +++ b/packages/kernel/current/include/mvarimpl.inl @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/pkgconf/kernel.h b/packages/kernel/current/include/pkgconf/kernel.h --- a/packages/kernel/current/include/pkgconf/kernel.h +++ b/packages/kernel/current/include/pkgconf/kernel.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/sched.hxx b/packages/kernel/current/include/sched.hxx --- a/packages/kernel/current/include/sched.hxx +++ b/packages/kernel/current/include/sched.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/sched.inl b/packages/kernel/current/include/sched.inl --- a/packages/kernel/current/include/sched.inl +++ b/packages/kernel/current/include/sched.inl @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/sema.hxx b/packages/kernel/current/include/sema.hxx --- a/packages/kernel/current/include/sema.hxx +++ b/packages/kernel/current/include/sema.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/sema2.hxx b/packages/kernel/current/include/sema2.hxx --- a/packages/kernel/current/include/sema2.hxx +++ b/packages/kernel/current/include/sema2.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/test/stackmon.h b/packages/kernel/current/include/test/stackmon.h --- a/packages/kernel/current/include/test/stackmon.h +++ b/packages/kernel/current/include/test/stackmon.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/thread.hxx b/packages/kernel/current/include/thread.hxx --- a/packages/kernel/current/include/thread.hxx +++ b/packages/kernel/current/include/thread.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/thread.inl b/packages/kernel/current/include/thread.inl --- a/packages/kernel/current/include/thread.inl +++ b/packages/kernel/current/include/thread.inl @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/include/timer.hxx b/packages/kernel/current/include/timer.hxx --- a/packages/kernel/current/include/timer.hxx +++ b/packages/kernel/current/include/timer.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/PKGconf.mak b/packages/kernel/current/src/PKGconf.mak --- a/packages/kernel/current/src/PKGconf.mak +++ b/packages/kernel/current/src/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/kernel/current/src/common/clock.cxx b/packages/kernel/current/src/common/clock.cxx --- a/packages/kernel/current/src/common/clock.cxx +++ b/packages/kernel/current/src/common/clock.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. @@ -838,7 +838,7 @@ bool measure_clock_latency = false; cyg_tick_count total_clock_dsr_latency, total_clock_dsr_calls; cyg_int32 min_clock_dsr_latency = 0x7FFFFFFF; cyg_int32 max_clock_dsr_latency = 0; -cyg_int32 clock_dsr_start = 0; +cyg_uint32 clock_dsr_start = 0; #endif // ------------------------------------------------------------------------- @@ -882,7 +882,7 @@ void Cyg_RealTimeClock::dsr(cyg_vector v #if defined(CYGVAR_KERNEL_COUNTERS_CLOCK_DSR_LATENCY) if (measure_clock_latency) { - cyg_int32 delta; + cyg_uint32 delta; HAL_CLOCK_READ(&delta); delta -= clock_dsr_start; // Note: Ignore a latency of <= 0 when finding min_clock_latency. diff --git a/packages/kernel/current/src/common/except.cxx b/packages/kernel/current/src/common/except.cxx --- a/packages/kernel/current/src/common/except.cxx +++ b/packages/kernel/current/src/common/except.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/common/kapi.cxx b/packages/kernel/current/src/common/kapi.cxx --- a/packages/kernel/current/src/common/kapi.cxx +++ b/packages/kernel/current/src/common/kapi.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/common/thread.cxx b/packages/kernel/current/src/common/thread.cxx --- a/packages/kernel/current/src/common/thread.cxx +++ b/packages/kernel/current/src/common/thread.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/common/timer.cxx b/packages/kernel/current/src/common/timer.cxx --- a/packages/kernel/current/src/common/timer.cxx +++ b/packages/kernel/current/src/common/timer.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/debug/dbg-thread-demux.c b/packages/kernel/current/src/debug/dbg-thread-demux.c --- a/packages/kernel/current/src/debug/dbg-thread-demux.c +++ b/packages/kernel/current/src/debug/dbg-thread-demux.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/debug/dbg_gdb.cxx b/packages/kernel/current/src/debug/dbg_gdb.cxx --- a/packages/kernel/current/src/debug/dbg_gdb.cxx +++ b/packages/kernel/current/src/debug/dbg_gdb.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/instrmnt/meminst.cxx b/packages/kernel/current/src/instrmnt/meminst.cxx --- a/packages/kernel/current/src/instrmnt/meminst.cxx +++ b/packages/kernel/current/src/instrmnt/meminst.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/instrmnt/nullinst.cxx b/packages/kernel/current/src/instrmnt/nullinst.cxx --- a/packages/kernel/current/src/instrmnt/nullinst.cxx +++ b/packages/kernel/current/src/instrmnt/nullinst.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/intr/intr.cxx b/packages/kernel/current/src/intr/intr.cxx --- a/packages/kernel/current/src/intr/intr.cxx +++ b/packages/kernel/current/src/intr/intr.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/mem/memfixed.cxx b/packages/kernel/current/src/mem/memfixed.cxx --- a/packages/kernel/current/src/mem/memfixed.cxx +++ b/packages/kernel/current/src/mem/memfixed.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/mem/memvar.cxx b/packages/kernel/current/src/mem/memvar.cxx --- a/packages/kernel/current/src/mem/memvar.cxx +++ b/packages/kernel/current/src/mem/memvar.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/sched/bitmap.cxx b/packages/kernel/current/src/sched/bitmap.cxx --- a/packages/kernel/current/src/sched/bitmap.cxx +++ b/packages/kernel/current/src/sched/bitmap.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/sched/lottery.cxx b/packages/kernel/current/src/sched/lottery.cxx --- a/packages/kernel/current/src/sched/lottery.cxx +++ b/packages/kernel/current/src/sched/lottery.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/sched/mlqueue.cxx b/packages/kernel/current/src/sched/mlqueue.cxx --- a/packages/kernel/current/src/sched/mlqueue.cxx +++ b/packages/kernel/current/src/sched/mlqueue.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/sched/sched.cxx b/packages/kernel/current/src/sched/sched.cxx --- a/packages/kernel/current/src/sched/sched.cxx +++ b/packages/kernel/current/src/sched/sched.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/sync/bin_sem.cxx b/packages/kernel/current/src/sync/bin_sem.cxx --- a/packages/kernel/current/src/sync/bin_sem.cxx +++ b/packages/kernel/current/src/sync/bin_sem.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/sync/cnt_sem.cxx b/packages/kernel/current/src/sync/cnt_sem.cxx --- a/packages/kernel/current/src/sync/cnt_sem.cxx +++ b/packages/kernel/current/src/sync/cnt_sem.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/sync/cnt_sem2.cxx b/packages/kernel/current/src/sync/cnt_sem2.cxx --- a/packages/kernel/current/src/sync/cnt_sem2.cxx +++ b/packages/kernel/current/src/sync/cnt_sem2.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/sync/flag.cxx b/packages/kernel/current/src/sync/flag.cxx --- a/packages/kernel/current/src/sync/flag.cxx +++ b/packages/kernel/current/src/sync/flag.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/sync/mbox.cxx b/packages/kernel/current/src/sync/mbox.cxx --- a/packages/kernel/current/src/sync/mbox.cxx +++ b/packages/kernel/current/src/sync/mbox.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/src/sync/mutex.cxx b/packages/kernel/current/src/sync/mutex.cxx --- a/packages/kernel/current/src/sync/mutex.cxx +++ b/packages/kernel/current/src/sync/mutex.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/PKGconf.mak b/packages/kernel/current/tests/PKGconf.mak --- a/packages/kernel/current/tests/PKGconf.mak +++ b/packages/kernel/current/tests/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/kernel/current/tests/bin_sem0.cxx b/packages/kernel/current/tests/bin_sem0.cxx --- a/packages/kernel/current/tests/bin_sem0.cxx +++ b/packages/kernel/current/tests/bin_sem0.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/bin_sem1.cxx b/packages/kernel/current/tests/bin_sem1.cxx --- a/packages/kernel/current/tests/bin_sem1.cxx +++ b/packages/kernel/current/tests/bin_sem1.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/bin_sem2.cxx b/packages/kernel/current/tests/bin_sem2.cxx --- a/packages/kernel/current/tests/bin_sem2.cxx +++ b/packages/kernel/current/tests/bin_sem2.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/clock0.cxx b/packages/kernel/current/tests/clock0.cxx --- a/packages/kernel/current/tests/clock0.cxx +++ b/packages/kernel/current/tests/clock0.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/clock1.cxx b/packages/kernel/current/tests/clock1.cxx --- a/packages/kernel/current/tests/clock1.cxx +++ b/packages/kernel/current/tests/clock1.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/clockcnv.cxx b/packages/kernel/current/tests/clockcnv.cxx --- a/packages/kernel/current/tests/clockcnv.cxx +++ b/packages/kernel/current/tests/clockcnv.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/cnt_sem0.cxx b/packages/kernel/current/tests/cnt_sem0.cxx --- a/packages/kernel/current/tests/cnt_sem0.cxx +++ b/packages/kernel/current/tests/cnt_sem0.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/cnt_sem1.cxx b/packages/kernel/current/tests/cnt_sem1.cxx --- a/packages/kernel/current/tests/cnt_sem1.cxx +++ b/packages/kernel/current/tests/cnt_sem1.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/except1.cxx b/packages/kernel/current/tests/except1.cxx --- a/packages/kernel/current/tests/except1.cxx +++ b/packages/kernel/current/tests/except1.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/flag0.cxx b/packages/kernel/current/tests/flag0.cxx --- a/packages/kernel/current/tests/flag0.cxx +++ b/packages/kernel/current/tests/flag0.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/flag1.cxx b/packages/kernel/current/tests/flag1.cxx --- a/packages/kernel/current/tests/flag1.cxx +++ b/packages/kernel/current/tests/flag1.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/intr0.cxx b/packages/kernel/current/tests/intr0.cxx --- a/packages/kernel/current/tests/intr0.cxx +++ b/packages/kernel/current/tests/intr0.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kcache1.c b/packages/kernel/current/tests/kcache1.c --- a/packages/kernel/current/tests/kcache1.c +++ b/packages/kernel/current/tests/kcache1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kcache2.c b/packages/kernel/current/tests/kcache2.c --- a/packages/kernel/current/tests/kcache2.c +++ b/packages/kernel/current/tests/kcache2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kclock0.c b/packages/kernel/current/tests/kclock0.c --- a/packages/kernel/current/tests/kclock0.c +++ b/packages/kernel/current/tests/kclock0.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kclock1.c b/packages/kernel/current/tests/kclock1.c --- a/packages/kernel/current/tests/kclock1.c +++ b/packages/kernel/current/tests/kclock1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kexcept1.c b/packages/kernel/current/tests/kexcept1.c --- a/packages/kernel/current/tests/kexcept1.c +++ b/packages/kernel/current/tests/kexcept1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kflag0.c b/packages/kernel/current/tests/kflag0.c --- a/packages/kernel/current/tests/kflag0.c +++ b/packages/kernel/current/tests/kflag0.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kflag1.c b/packages/kernel/current/tests/kflag1.c --- a/packages/kernel/current/tests/kflag1.c +++ b/packages/kernel/current/tests/kflag1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kill.cxx b/packages/kernel/current/tests/kill.cxx --- a/packages/kernel/current/tests/kill.cxx +++ b/packages/kernel/current/tests/kill.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kintr0.c b/packages/kernel/current/tests/kintr0.c --- a/packages/kernel/current/tests/kintr0.c +++ b/packages/kernel/current/tests/kintr0.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kmbox1.c b/packages/kernel/current/tests/kmbox1.c --- a/packages/kernel/current/tests/kmbox1.c +++ b/packages/kernel/current/tests/kmbox1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kmemfix1.c b/packages/kernel/current/tests/kmemfix1.c --- a/packages/kernel/current/tests/kmemfix1.c +++ b/packages/kernel/current/tests/kmemfix1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kmemvar1.c b/packages/kernel/current/tests/kmemvar1.c --- a/packages/kernel/current/tests/kmemvar1.c +++ b/packages/kernel/current/tests/kmemvar1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kmutex0.c b/packages/kernel/current/tests/kmutex0.c --- a/packages/kernel/current/tests/kmutex0.c +++ b/packages/kernel/current/tests/kmutex0.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kmutex1.c b/packages/kernel/current/tests/kmutex1.c --- a/packages/kernel/current/tests/kmutex1.c +++ b/packages/kernel/current/tests/kmutex1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kphilo.c b/packages/kernel/current/tests/kphilo.c --- a/packages/kernel/current/tests/kphilo.c +++ b/packages/kernel/current/tests/kphilo.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/ksched1.c b/packages/kernel/current/tests/ksched1.c --- a/packages/kernel/current/tests/ksched1.c +++ b/packages/kernel/current/tests/ksched1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/ksem0.c b/packages/kernel/current/tests/ksem0.c --- a/packages/kernel/current/tests/ksem0.c +++ b/packages/kernel/current/tests/ksem0.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/ksem1.c b/packages/kernel/current/tests/ksem1.c --- a/packages/kernel/current/tests/ksem1.c +++ b/packages/kernel/current/tests/ksem1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kthread0.c b/packages/kernel/current/tests/kthread0.c --- a/packages/kernel/current/tests/kthread0.c +++ b/packages/kernel/current/tests/kthread0.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/kthread1.c b/packages/kernel/current/tests/kthread1.c --- a/packages/kernel/current/tests/kthread1.c +++ b/packages/kernel/current/tests/kthread1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/mbox1.cxx b/packages/kernel/current/tests/mbox1.cxx --- a/packages/kernel/current/tests/mbox1.cxx +++ b/packages/kernel/current/tests/mbox1.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/memfix1.cxx b/packages/kernel/current/tests/memfix1.cxx --- a/packages/kernel/current/tests/memfix1.cxx +++ b/packages/kernel/current/tests/memfix1.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/memfix2.cxx b/packages/kernel/current/tests/memfix2.cxx --- a/packages/kernel/current/tests/memfix2.cxx +++ b/packages/kernel/current/tests/memfix2.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/memvar1.cxx b/packages/kernel/current/tests/memvar1.cxx --- a/packages/kernel/current/tests/memvar1.cxx +++ b/packages/kernel/current/tests/memvar1.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/memvar2.cxx b/packages/kernel/current/tests/memvar2.cxx --- a/packages/kernel/current/tests/memvar2.cxx +++ b/packages/kernel/current/tests/memvar2.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/mutex0.cxx b/packages/kernel/current/tests/mutex0.cxx --- a/packages/kernel/current/tests/mutex0.cxx +++ b/packages/kernel/current/tests/mutex0.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/mutex1.cxx b/packages/kernel/current/tests/mutex1.cxx --- a/packages/kernel/current/tests/mutex1.cxx +++ b/packages/kernel/current/tests/mutex1.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/mutex2.cxx b/packages/kernel/current/tests/mutex2.cxx --- a/packages/kernel/current/tests/mutex2.cxx +++ b/packages/kernel/current/tests/mutex2.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/mutex3.cxx b/packages/kernel/current/tests/mutex3.cxx --- a/packages/kernel/current/tests/mutex3.cxx +++ b/packages/kernel/current/tests/mutex3.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/philo.cxx b/packages/kernel/current/tests/philo.cxx --- a/packages/kernel/current/tests/philo.cxx +++ b/packages/kernel/current/tests/philo.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/release.cxx b/packages/kernel/current/tests/release.cxx --- a/packages/kernel/current/tests/release.cxx +++ b/packages/kernel/current/tests/release.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/sched1.cxx b/packages/kernel/current/tests/sched1.cxx --- a/packages/kernel/current/tests/sched1.cxx +++ b/packages/kernel/current/tests/sched1.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/stress_threads.c b/packages/kernel/current/tests/stress_threads.c --- a/packages/kernel/current/tests/stress_threads.c +++ b/packages/kernel/current/tests/stress_threads.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/sync2.cxx b/packages/kernel/current/tests/sync2.cxx --- a/packages/kernel/current/tests/sync2.cxx +++ b/packages/kernel/current/tests/sync2.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/sync3.cxx b/packages/kernel/current/tests/sync3.cxx --- a/packages/kernel/current/tests/sync3.cxx +++ b/packages/kernel/current/tests/sync3.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/tcdiag.cxx b/packages/kernel/current/tests/tcdiag.cxx --- a/packages/kernel/current/tests/tcdiag.cxx +++ b/packages/kernel/current/tests/tcdiag.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/testaux.h b/packages/kernel/current/tests/testaux.h --- a/packages/kernel/current/tests/testaux.h +++ b/packages/kernel/current/tests/testaux.h @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/testaux.hxx b/packages/kernel/current/tests/testaux.hxx --- a/packages/kernel/current/tests/testaux.hxx +++ b/packages/kernel/current/tests/testaux.hxx @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/thread0.cxx b/packages/kernel/current/tests/thread0.cxx --- a/packages/kernel/current/tests/thread0.cxx +++ b/packages/kernel/current/tests/thread0.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/thread1.cxx b/packages/kernel/current/tests/thread1.cxx --- a/packages/kernel/current/tests/thread1.cxx +++ b/packages/kernel/current/tests/thread1.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/thread2.cxx b/packages/kernel/current/tests/thread2.cxx --- a/packages/kernel/current/tests/thread2.cxx +++ b/packages/kernel/current/tests/thread2.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/thread_gdb.c b/packages/kernel/current/tests/thread_gdb.c --- a/packages/kernel/current/tests/thread_gdb.c +++ b/packages/kernel/current/tests/thread_gdb.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/kernel/current/tests/tm_basic.cxx b/packages/kernel/current/tests/tm_basic.cxx --- a/packages/kernel/current/tests/tm_basic.cxx +++ b/packages/kernel/current/tests/tm_basic.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. @@ -78,15 +78,15 @@ typedef struct fun_times { #ifdef CYGMEM_REGION_ram_SIZE #define CYG_THREAD_OVERHEAD (STACK_SIZE+sizeof(cyg_thread)+(sizeof(fun_times)*2)) -#define NTEST_THREADS ((CYGMEM_REGION_ram_SIZE/8)/CYG_THREAD_OVERHEAD) +#define NTEST_THREADS ((CYGMEM_REGION_ram_SIZE/16)/CYG_THREAD_OVERHEAD) #define CYG_MUTEX_OVERHEAD (sizeof(cyg_mutex_t)+sizeof(fun_times)) #define NMUTEXES ((CYGMEM_REGION_ram_SIZE/16)/CYG_MUTEX_OVERHEAD) #define CYG_MBOX_OVERHEAD (sizeof(cyg_mbox)+sizeof(fun_times)) -#define NMBOXES ((CYGMEM_REGION_ram_SIZE/16)/CYG_MBOX_OVERHEAD) +#define NMBOXES ((CYGMEM_REGION_ram_SIZE/24)/CYG_MBOX_OVERHEAD) #define CYG_SEMAPHORE_OVERHEAD (sizeof(cyg_sem_t)+sizeof(fun_times)) #define NSEMAPHORES ((CYGMEM_REGION_ram_SIZE/16)/CYG_SEMAPHORE_OVERHEAD) #define CYG_COUNTER_OVERHEAD (sizeof(cyg_counter)+sizeof(fun_times)) -#define NCOUNTERS ((CYGMEM_REGION_ram_SIZE/16)/CYG_COUNTER_OVERHEAD) +#define NCOUNTERS ((CYGMEM_REGION_ram_SIZE/24)/CYG_COUNTER_OVERHEAD) #define CYG_ALARM_OVERHEAD (sizeof(cyg_alarm)+sizeof(fun_times)) #define NALARMS ((CYGMEM_REGION_ram_SIZE/16)/CYG_ALARM_OVERHEAD) #else @@ -1719,12 +1719,12 @@ externC void cyg_start( void ) { CYG_TEST_INIT(); - CYG_TEST_PASS_FINISH("Timing tests require:\n" - "CYGFUN_KERNEL_API_C && \n" - "CYGSEM_KERNEL_SCHED_MLQUEUE &&\n" - "CYGVAR_KERNEL_COUNTERS_CLOCK &&\n" - "!CYGPKG_HAL_I386_LINUX &&\n" - "(CYGNUM_KERNEL_SCHED_PRIORITIES > 12)\n"); + CYG_TEST_NA("Timing tests require:\n" + "CYGFUN_KERNEL_API_C && \n" + "CYGSEM_KERNEL_SCHED_MLQUEUE &&\n" + "CYGVAR_KERNEL_COUNTERS_CLOCK &&\n" + "!CYGPKG_HAL_I386_LINUX &&\n" + "(CYGNUM_KERNEL_SCHED_PRIORITIES > 12)\n"); } #endif // CYGFUN_KERNEL_API_C, etc. diff --git a/packages/language/c/libc/current/ChangeLog b/packages/language/c/libc/current/ChangeLog --- a/packages/language/c/libc/current/ChangeLog +++ b/packages/language/c/libc/current/ChangeLog @@ -2597,11 +2597,11 @@ Thu Mar 19 11:41:56 1998 Jonathan Larmo // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/assert.h b/packages/language/c/libc/current/include/assert.h --- a/packages/language/c/libc/current/include/assert.h +++ b/packages/language/c/libc/current/include/assert.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/ctype.h b/packages/language/c/libc/current/include/ctype.h --- a/packages/language/c/libc/current/include/ctype.h +++ b/packages/language/c/libc/current/include/ctype.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/ctype.inl b/packages/language/c/libc/current/include/ctype.inl --- a/packages/language/c/libc/current/include/ctype.inl +++ b/packages/language/c/libc/current/include/ctype.inl @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/errno.h b/packages/language/c/libc/current/include/errno.h --- a/packages/language/c/libc/current/include/errno.h +++ b/packages/language/c/libc/current/include/errno.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/locale.h b/packages/language/c/libc/current/include/locale.h --- a/packages/language/c/libc/current/include/locale.h +++ b/packages/language/c/libc/current/include/locale.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/pkgconf/libc.h b/packages/language/c/libc/current/include/pkgconf/libc.h --- a/packages/language/c/libc/current/include/pkgconf/libc.h +++ b/packages/language/c/libc/current/include/pkgconf/libc.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/setjmp.h b/packages/language/c/libc/current/include/setjmp.h --- a/packages/language/c/libc/current/include/setjmp.h +++ b/packages/language/c/libc/current/include/setjmp.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/setjmp.inl b/packages/language/c/libc/current/include/setjmp.inl --- a/packages/language/c/libc/current/include/setjmp.inl +++ b/packages/language/c/libc/current/include/setjmp.inl @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/signal.h b/packages/language/c/libc/current/include/signal.h --- a/packages/language/c/libc/current/include/signal.h +++ b/packages/language/c/libc/current/include/signal.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/signal.inl b/packages/language/c/libc/current/include/signal.inl --- a/packages/language/c/libc/current/include/signal.inl +++ b/packages/language/c/libc/current/include/signal.inl @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/stdio.h b/packages/language/c/libc/current/include/stdio.h --- a/packages/language/c/libc/current/include/stdio.h +++ b/packages/language/c/libc/current/include/stdio.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/stdio.inl b/packages/language/c/libc/current/include/stdio.inl --- a/packages/language/c/libc/current/include/stdio.inl +++ b/packages/language/c/libc/current/include/stdio.inl @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/stdlib.h b/packages/language/c/libc/current/include/stdlib.h --- a/packages/language/c/libc/current/include/stdlib.h +++ b/packages/language/c/libc/current/include/stdlib.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/stdlib.inl b/packages/language/c/libc/current/include/stdlib.inl --- a/packages/language/c/libc/current/include/stdlib.inl +++ b/packages/language/c/libc/current/include/stdlib.inl @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/string.h b/packages/language/c/libc/current/include/string.h --- a/packages/language/c/libc/current/include/string.h +++ b/packages/language/c/libc/current/include/string.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/string.inl b/packages/language/c/libc/current/include/string.inl --- a/packages/language/c/libc/current/include/string.inl +++ b/packages/language/c/libc/current/include/string.inl @@ -12,11 +12,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/sys/cstartup.h b/packages/language/c/libc/current/include/sys/cstartup.h --- a/packages/language/c/libc/current/include/sys/cstartup.h +++ b/packages/language/c/libc/current/include/sys/cstartup.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/sys/timeutil.h b/packages/language/c/libc/current/include/sys/timeutil.h --- a/packages/language/c/libc/current/include/sys/timeutil.h +++ b/packages/language/c/libc/current/include/sys/timeutil.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/time.h b/packages/language/c/libc/current/include/time.h --- a/packages/language/c/libc/current/include/time.h +++ b/packages/language/c/libc/current/include/time.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/include/time.inl b/packages/language/c/libc/current/include/time.inl --- a/packages/language/c/libc/current/include/time.inl +++ b/packages/language/c/libc/current/include/time.inl @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/PKGconf.mak b/packages/language/c/libc/current/src/PKGconf.mak --- a/packages/language/c/libc/current/src/PKGconf.mak +++ b/packages/language/c/libc/current/src/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/language/c/libc/current/src/clibincl/ctypesupp.hxx b/packages/language/c/libc/current/src/clibincl/ctypesupp.hxx --- a/packages/language/c/libc/current/src/clibincl/ctypesupp.hxx +++ b/packages/language/c/libc/current/src/clibincl/ctypesupp.hxx @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/clibincl/i18nsupp.hxx b/packages/language/c/libc/current/src/clibincl/i18nsupp.hxx --- a/packages/language/c/libc/current/src/clibincl/i18nsupp.hxx +++ b/packages/language/c/libc/current/src/clibincl/i18nsupp.hxx @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/clibincl/setjmpsupp.hxx b/packages/language/c/libc/current/src/clibincl/setjmpsupp.hxx --- a/packages/language/c/libc/current/src/clibincl/setjmpsupp.hxx +++ b/packages/language/c/libc/current/src/clibincl/setjmpsupp.hxx @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/clibincl/stdiofiles.hxx b/packages/language/c/libc/current/src/clibincl/stdiofiles.hxx --- a/packages/language/c/libc/current/src/clibincl/stdiofiles.hxx +++ b/packages/language/c/libc/current/src/clibincl/stdiofiles.hxx @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/clibincl/stdiofiles.inl b/packages/language/c/libc/current/src/clibincl/stdiofiles.inl --- a/packages/language/c/libc/current/src/clibincl/stdiofiles.inl +++ b/packages/language/c/libc/current/src/clibincl/stdiofiles.inl @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/clibincl/stdiosupp.hxx b/packages/language/c/libc/current/src/clibincl/stdiosupp.hxx --- a/packages/language/c/libc/current/src/clibincl/stdiosupp.hxx +++ b/packages/language/c/libc/current/src/clibincl/stdiosupp.hxx @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/clibincl/stdlibsupp.hxx b/packages/language/c/libc/current/src/clibincl/stdlibsupp.hxx --- a/packages/language/c/libc/current/src/clibincl/stdlibsupp.hxx +++ b/packages/language/c/libc/current/src/clibincl/stdlibsupp.hxx @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/clibincl/stream.hxx b/packages/language/c/libc/current/src/clibincl/stream.hxx --- a/packages/language/c/libc/current/src/clibincl/stream.hxx +++ b/packages/language/c/libc/current/src/clibincl/stream.hxx @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/clibincl/stream.inl b/packages/language/c/libc/current/src/clibincl/stream.inl --- a/packages/language/c/libc/current/src/clibincl/stream.inl +++ b/packages/language/c/libc/current/src/clibincl/stream.inl @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/clibincl/streambuf.hxx b/packages/language/c/libc/current/src/clibincl/streambuf.hxx --- a/packages/language/c/libc/current/src/clibincl/streambuf.hxx +++ b/packages/language/c/libc/current/src/clibincl/streambuf.hxx @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/clibincl/streambuf.inl b/packages/language/c/libc/current/src/clibincl/streambuf.inl --- a/packages/language/c/libc/current/src/clibincl/streambuf.inl +++ b/packages/language/c/libc/current/src/clibincl/streambuf.inl @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/clibincl/stringsupp.hxx b/packages/language/c/libc/current/src/clibincl/stringsupp.hxx --- a/packages/language/c/libc/current/src/clibincl/stringsupp.hxx +++ b/packages/language/c/libc/current/src/clibincl/stringsupp.hxx @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/isalnum.cxx b/packages/language/c/libc/current/src/ctype/isalnum.cxx --- a/packages/language/c/libc/current/src/ctype/isalnum.cxx +++ b/packages/language/c/libc/current/src/ctype/isalnum.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/isalpha.cxx b/packages/language/c/libc/current/src/ctype/isalpha.cxx --- a/packages/language/c/libc/current/src/ctype/isalpha.cxx +++ b/packages/language/c/libc/current/src/ctype/isalpha.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/iscntrl.cxx b/packages/language/c/libc/current/src/ctype/iscntrl.cxx --- a/packages/language/c/libc/current/src/ctype/iscntrl.cxx +++ b/packages/language/c/libc/current/src/ctype/iscntrl.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/isdigit.cxx b/packages/language/c/libc/current/src/ctype/isdigit.cxx --- a/packages/language/c/libc/current/src/ctype/isdigit.cxx +++ b/packages/language/c/libc/current/src/ctype/isdigit.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/isgraph.cxx b/packages/language/c/libc/current/src/ctype/isgraph.cxx --- a/packages/language/c/libc/current/src/ctype/isgraph.cxx +++ b/packages/language/c/libc/current/src/ctype/isgraph.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/islower.cxx b/packages/language/c/libc/current/src/ctype/islower.cxx --- a/packages/language/c/libc/current/src/ctype/islower.cxx +++ b/packages/language/c/libc/current/src/ctype/islower.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/isprint.cxx b/packages/language/c/libc/current/src/ctype/isprint.cxx --- a/packages/language/c/libc/current/src/ctype/isprint.cxx +++ b/packages/language/c/libc/current/src/ctype/isprint.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/ispunct.cxx b/packages/language/c/libc/current/src/ctype/ispunct.cxx --- a/packages/language/c/libc/current/src/ctype/ispunct.cxx +++ b/packages/language/c/libc/current/src/ctype/ispunct.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/isspace.cxx b/packages/language/c/libc/current/src/ctype/isspace.cxx --- a/packages/language/c/libc/current/src/ctype/isspace.cxx +++ b/packages/language/c/libc/current/src/ctype/isspace.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/isupper.cxx b/packages/language/c/libc/current/src/ctype/isupper.cxx --- a/packages/language/c/libc/current/src/ctype/isupper.cxx +++ b/packages/language/c/libc/current/src/ctype/isupper.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/isxdigit.cxx b/packages/language/c/libc/current/src/ctype/isxdigit.cxx --- a/packages/language/c/libc/current/src/ctype/isxdigit.cxx +++ b/packages/language/c/libc/current/src/ctype/isxdigit.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/tolower.cxx b/packages/language/c/libc/current/src/ctype/tolower.cxx --- a/packages/language/c/libc/current/src/ctype/tolower.cxx +++ b/packages/language/c/libc/current/src/ctype/tolower.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/ctype/toupper.cxx b/packages/language/c/libc/current/src/ctype/toupper.cxx --- a/packages/language/c/libc/current/src/ctype/toupper.cxx +++ b/packages/language/c/libc/current/src/ctype/toupper.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/errno/errno.cxx b/packages/language/c/libc/current/src/errno/errno.cxx --- a/packages/language/c/libc/current/src/errno/errno.cxx +++ b/packages/language/c/libc/current/src/errno/errno.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/i18n/locale.cxx b/packages/language/c/libc/current/src/i18n/locale.cxx --- a/packages/language/c/libc/current/src/i18n/locale.cxx +++ b/packages/language/c/libc/current/src/i18n/locale.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/setjmp/longjmp.cxx b/packages/language/c/libc/current/src/setjmp/longjmp.cxx --- a/packages/language/c/libc/current/src/setjmp/longjmp.cxx +++ b/packages/language/c/libc/current/src/setjmp/longjmp.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/signal/raise.cxx b/packages/language/c/libc/current/src/signal/raise.cxx --- a/packages/language/c/libc/current/src/signal/raise.cxx +++ b/packages/language/c/libc/current/src/signal/raise.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/signal/siginit.cxx b/packages/language/c/libc/current/src/signal/siginit.cxx --- a/packages/language/c/libc/current/src/signal/siginit.cxx +++ b/packages/language/c/libc/current/src/signal/siginit.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/signal/signal.cxx b/packages/language/c/libc/current/src/signal/signal.cxx --- a/packages/language/c/libc/current/src/signal/signal.cxx +++ b/packages/language/c/libc/current/src/signal/signal.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/fclose.cxx b/packages/language/c/libc/current/src/stdio/common/fclose.cxx --- a/packages/language/c/libc/current/src/stdio/common/fclose.cxx +++ b/packages/language/c/libc/current/src/stdio/common/fclose.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/fflush.cxx b/packages/language/c/libc/current/src/stdio/common/fflush.cxx --- a/packages/language/c/libc/current/src/stdio/common/fflush.cxx +++ b/packages/language/c/libc/current/src/stdio/common/fflush.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/fopen.cxx b/packages/language/c/libc/current/src/stdio/common/fopen.cxx --- a/packages/language/c/libc/current/src/stdio/common/fopen.cxx +++ b/packages/language/c/libc/current/src/stdio/common/fopen.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/freopen.cxx b/packages/language/c/libc/current/src/stdio/common/freopen.cxx --- a/packages/language/c/libc/current/src/stdio/common/freopen.cxx +++ b/packages/language/c/libc/current/src/stdio/common/freopen.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/setvbuf.cxx b/packages/language/c/libc/current/src/stdio/common/setvbuf.cxx --- a/packages/language/c/libc/current/src/stdio/common/setvbuf.cxx +++ b/packages/language/c/libc/current/src/stdio/common/setvbuf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/snprintf.cxx b/packages/language/c/libc/current/src/stdio/common/snprintf.cxx --- a/packages/language/c/libc/current/src/stdio/common/snprintf.cxx +++ b/packages/language/c/libc/current/src/stdio/common/snprintf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/sprintf.cxx b/packages/language/c/libc/current/src/stdio/common/sprintf.cxx --- a/packages/language/c/libc/current/src/stdio/common/sprintf.cxx +++ b/packages/language/c/libc/current/src/stdio/common/sprintf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/sscanf.cxx b/packages/language/c/libc/current/src/stdio/common/sscanf.cxx --- a/packages/language/c/libc/current/src/stdio/common/sscanf.cxx +++ b/packages/language/c/libc/current/src/stdio/common/sscanf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/stderr.cxx b/packages/language/c/libc/current/src/stdio/common/stderr.cxx --- a/packages/language/c/libc/current/src/stdio/common/stderr.cxx +++ b/packages/language/c/libc/current/src/stdio/common/stderr.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/stdin.cxx b/packages/language/c/libc/current/src/stdio/common/stdin.cxx --- a/packages/language/c/libc/current/src/stdio/common/stdin.cxx +++ b/packages/language/c/libc/current/src/stdio/common/stdin.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/stdiofiles.cxx b/packages/language/c/libc/current/src/stdio/common/stdiofiles.cxx --- a/packages/language/c/libc/current/src/stdio/common/stdiofiles.cxx +++ b/packages/language/c/libc/current/src/stdio/common/stdiofiles.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/stdioinlines.cxx b/packages/language/c/libc/current/src/stdio/common/stdioinlines.cxx --- a/packages/language/c/libc/current/src/stdio/common/stdioinlines.cxx +++ b/packages/language/c/libc/current/src/stdio/common/stdioinlines.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/stdiosupp.cxx b/packages/language/c/libc/current/src/stdio/common/stdiosupp.cxx --- a/packages/language/c/libc/current/src/stdio/common/stdiosupp.cxx +++ b/packages/language/c/libc/current/src/stdio/common/stdiosupp.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/stdout.cxx b/packages/language/c/libc/current/src/stdio/common/stdout.cxx --- a/packages/language/c/libc/current/src/stdio/common/stdout.cxx +++ b/packages/language/c/libc/current/src/stdio/common/stdout.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/stream.cxx b/packages/language/c/libc/current/src/stdio/common/stream.cxx --- a/packages/language/c/libc/current/src/stdio/common/stream.cxx +++ b/packages/language/c/libc/current/src/stdio/common/stream.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/streambuf.cxx b/packages/language/c/libc/current/src/stdio/common/streambuf.cxx --- a/packages/language/c/libc/current/src/stdio/common/streambuf.cxx +++ b/packages/language/c/libc/current/src/stdio/common/streambuf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/ungetc.cxx b/packages/language/c/libc/current/src/stdio/common/ungetc.cxx --- a/packages/language/c/libc/current/src/stdio/common/ungetc.cxx +++ b/packages/language/c/libc/current/src/stdio/common/ungetc.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/vsnprintf.cxx b/packages/language/c/libc/current/src/stdio/common/vsnprintf.cxx --- a/packages/language/c/libc/current/src/stdio/common/vsnprintf.cxx +++ b/packages/language/c/libc/current/src/stdio/common/vsnprintf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/common/vsscanf.cxx b/packages/language/c/libc/current/src/stdio/common/vsscanf.cxx --- a/packages/language/c/libc/current/src/stdio/common/vsscanf.cxx +++ b/packages/language/c/libc/current/src/stdio/common/vsscanf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/input/fgetc.cxx b/packages/language/c/libc/current/src/stdio/input/fgetc.cxx --- a/packages/language/c/libc/current/src/stdio/input/fgetc.cxx +++ b/packages/language/c/libc/current/src/stdio/input/fgetc.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/input/fgets.cxx b/packages/language/c/libc/current/src/stdio/input/fgets.cxx --- a/packages/language/c/libc/current/src/stdio/input/fgets.cxx +++ b/packages/language/c/libc/current/src/stdio/input/fgets.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/input/fread.cxx b/packages/language/c/libc/current/src/stdio/input/fread.cxx --- a/packages/language/c/libc/current/src/stdio/input/fread.cxx +++ b/packages/language/c/libc/current/src/stdio/input/fread.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/input/fscanf.cxx b/packages/language/c/libc/current/src/stdio/input/fscanf.cxx --- a/packages/language/c/libc/current/src/stdio/input/fscanf.cxx +++ b/packages/language/c/libc/current/src/stdio/input/fscanf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/input/gets.cxx b/packages/language/c/libc/current/src/stdio/input/gets.cxx --- a/packages/language/c/libc/current/src/stdio/input/gets.cxx +++ b/packages/language/c/libc/current/src/stdio/input/gets.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/input/scanf.cxx b/packages/language/c/libc/current/src/stdio/input/scanf.cxx --- a/packages/language/c/libc/current/src/stdio/input/scanf.cxx +++ b/packages/language/c/libc/current/src/stdio/input/scanf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/input/vfscanf.cxx b/packages/language/c/libc/current/src/stdio/input/vfscanf.cxx --- a/packages/language/c/libc/current/src/stdio/input/vfscanf.cxx +++ b/packages/language/c/libc/current/src/stdio/input/vfscanf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/output/fnprintf.cxx b/packages/language/c/libc/current/src/stdio/output/fnprintf.cxx --- a/packages/language/c/libc/current/src/stdio/output/fnprintf.cxx +++ b/packages/language/c/libc/current/src/stdio/output/fnprintf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/output/fprintf.cxx b/packages/language/c/libc/current/src/stdio/output/fprintf.cxx --- a/packages/language/c/libc/current/src/stdio/output/fprintf.cxx +++ b/packages/language/c/libc/current/src/stdio/output/fprintf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/output/fputc.cxx b/packages/language/c/libc/current/src/stdio/output/fputc.cxx --- a/packages/language/c/libc/current/src/stdio/output/fputc.cxx +++ b/packages/language/c/libc/current/src/stdio/output/fputc.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/output/fputs.cxx b/packages/language/c/libc/current/src/stdio/output/fputs.cxx --- a/packages/language/c/libc/current/src/stdio/output/fputs.cxx +++ b/packages/language/c/libc/current/src/stdio/output/fputs.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/output/fwrite.cxx b/packages/language/c/libc/current/src/stdio/output/fwrite.cxx --- a/packages/language/c/libc/current/src/stdio/output/fwrite.cxx +++ b/packages/language/c/libc/current/src/stdio/output/fwrite.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/output/printf.cxx b/packages/language/c/libc/current/src/stdio/output/printf.cxx --- a/packages/language/c/libc/current/src/stdio/output/printf.cxx +++ b/packages/language/c/libc/current/src/stdio/output/printf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdio/output/vfnprintf.cxx b/packages/language/c/libc/current/src/stdio/output/vfnprintf.cxx --- a/packages/language/c/libc/current/src/stdio/output/vfnprintf.cxx +++ b/packages/language/c/libc/current/src/stdio/output/vfnprintf.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/_exit.cxx b/packages/language/c/libc/current/src/stdlib/_exit.cxx --- a/packages/language/c/libc/current/src/stdlib/_exit.cxx +++ b/packages/language/c/libc/current/src/stdlib/_exit.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/abort.cxx b/packages/language/c/libc/current/src/stdlib/abort.cxx --- a/packages/language/c/libc/current/src/stdlib/abort.cxx +++ b/packages/language/c/libc/current/src/stdlib/abort.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/abs.cxx b/packages/language/c/libc/current/src/stdlib/abs.cxx --- a/packages/language/c/libc/current/src/stdlib/abs.cxx +++ b/packages/language/c/libc/current/src/stdlib/abs.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/atexit.cxx b/packages/language/c/libc/current/src/stdlib/atexit.cxx --- a/packages/language/c/libc/current/src/stdlib/atexit.cxx +++ b/packages/language/c/libc/current/src/stdlib/atexit.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/atof.cxx b/packages/language/c/libc/current/src/stdlib/atof.cxx --- a/packages/language/c/libc/current/src/stdlib/atof.cxx +++ b/packages/language/c/libc/current/src/stdlib/atof.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/atoi.cxx b/packages/language/c/libc/current/src/stdlib/atoi.cxx --- a/packages/language/c/libc/current/src/stdlib/atoi.cxx +++ b/packages/language/c/libc/current/src/stdlib/atoi.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/atol.cxx b/packages/language/c/libc/current/src/stdlib/atol.cxx --- a/packages/language/c/libc/current/src/stdlib/atol.cxx +++ b/packages/language/c/libc/current/src/stdlib/atol.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/bsearch.cxx b/packages/language/c/libc/current/src/stdlib/bsearch.cxx --- a/packages/language/c/libc/current/src/stdlib/bsearch.cxx +++ b/packages/language/c/libc/current/src/stdlib/bsearch.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/div.cxx b/packages/language/c/libc/current/src/stdlib/div.cxx --- a/packages/language/c/libc/current/src/stdlib/div.cxx +++ b/packages/language/c/libc/current/src/stdlib/div.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/exit.cxx b/packages/language/c/libc/current/src/stdlib/exit.cxx --- a/packages/language/c/libc/current/src/stdlib/exit.cxx +++ b/packages/language/c/libc/current/src/stdlib/exit.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/getenv.cxx b/packages/language/c/libc/current/src/stdlib/getenv.cxx --- a/packages/language/c/libc/current/src/stdlib/getenv.cxx +++ b/packages/language/c/libc/current/src/stdlib/getenv.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/itoa.cxx b/packages/language/c/libc/current/src/stdlib/itoa.cxx --- a/packages/language/c/libc/current/src/stdlib/itoa.cxx +++ b/packages/language/c/libc/current/src/stdlib/itoa.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/labs.cxx b/packages/language/c/libc/current/src/stdlib/labs.cxx --- a/packages/language/c/libc/current/src/stdlib/labs.cxx +++ b/packages/language/c/libc/current/src/stdlib/labs.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/ldiv.cxx b/packages/language/c/libc/current/src/stdlib/ldiv.cxx --- a/packages/language/c/libc/current/src/stdlib/ldiv.cxx +++ b/packages/language/c/libc/current/src/stdlib/ldiv.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/malloc.cxx b/packages/language/c/libc/current/src/stdlib/malloc.cxx --- a/packages/language/c/libc/current/src/stdlib/malloc.cxx +++ b/packages/language/c/libc/current/src/stdlib/malloc.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/qsort.cxx b/packages/language/c/libc/current/src/stdlib/qsort.cxx --- a/packages/language/c/libc/current/src/stdlib/qsort.cxx +++ b/packages/language/c/libc/current/src/stdlib/qsort.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/rand.cxx b/packages/language/c/libc/current/src/stdlib/rand.cxx --- a/packages/language/c/libc/current/src/stdlib/rand.cxx +++ b/packages/language/c/libc/current/src/stdlib/rand.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/strtod.cxx b/packages/language/c/libc/current/src/stdlib/strtod.cxx --- a/packages/language/c/libc/current/src/stdlib/strtod.cxx +++ b/packages/language/c/libc/current/src/stdlib/strtod.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/strtol.cxx b/packages/language/c/libc/current/src/stdlib/strtol.cxx --- a/packages/language/c/libc/current/src/stdlib/strtol.cxx +++ b/packages/language/c/libc/current/src/stdlib/strtol.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/strtoul.cxx b/packages/language/c/libc/current/src/stdlib/strtoul.cxx --- a/packages/language/c/libc/current/src/stdlib/strtoul.cxx +++ b/packages/language/c/libc/current/src/stdlib/strtoul.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/stdlib/system.cxx b/packages/language/c/libc/current/src/stdlib/system.cxx --- a/packages/language/c/libc/current/src/stdlib/system.cxx +++ b/packages/language/c/libc/current/src/stdlib/system.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/memchr.cxx b/packages/language/c/libc/current/src/string/memchr.cxx --- a/packages/language/c/libc/current/src/string/memchr.cxx +++ b/packages/language/c/libc/current/src/string/memchr.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/memcmp.cxx b/packages/language/c/libc/current/src/string/memcmp.cxx --- a/packages/language/c/libc/current/src/string/memcmp.cxx +++ b/packages/language/c/libc/current/src/string/memcmp.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/memmove.cxx b/packages/language/c/libc/current/src/string/memmove.cxx --- a/packages/language/c/libc/current/src/string/memmove.cxx +++ b/packages/language/c/libc/current/src/string/memmove.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strcat.cxx b/packages/language/c/libc/current/src/string/strcat.cxx --- a/packages/language/c/libc/current/src/string/strcat.cxx +++ b/packages/language/c/libc/current/src/string/strcat.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strchr.cxx b/packages/language/c/libc/current/src/string/strchr.cxx --- a/packages/language/c/libc/current/src/string/strchr.cxx +++ b/packages/language/c/libc/current/src/string/strchr.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strcmp.cxx b/packages/language/c/libc/current/src/string/strcmp.cxx --- a/packages/language/c/libc/current/src/string/strcmp.cxx +++ b/packages/language/c/libc/current/src/string/strcmp.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strcoll.cxx b/packages/language/c/libc/current/src/string/strcoll.cxx --- a/packages/language/c/libc/current/src/string/strcoll.cxx +++ b/packages/language/c/libc/current/src/string/strcoll.cxx @@ -10,11 +10,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strcpy.cxx b/packages/language/c/libc/current/src/string/strcpy.cxx --- a/packages/language/c/libc/current/src/string/strcpy.cxx +++ b/packages/language/c/libc/current/src/string/strcpy.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strcspn.cxx b/packages/language/c/libc/current/src/string/strcspn.cxx --- a/packages/language/c/libc/current/src/string/strcspn.cxx +++ b/packages/language/c/libc/current/src/string/strcspn.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strlen.cxx b/packages/language/c/libc/current/src/string/strlen.cxx --- a/packages/language/c/libc/current/src/string/strlen.cxx +++ b/packages/language/c/libc/current/src/string/strlen.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strncat.cxx b/packages/language/c/libc/current/src/string/strncat.cxx --- a/packages/language/c/libc/current/src/string/strncat.cxx +++ b/packages/language/c/libc/current/src/string/strncat.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strncmp.cxx b/packages/language/c/libc/current/src/string/strncmp.cxx --- a/packages/language/c/libc/current/src/string/strncmp.cxx +++ b/packages/language/c/libc/current/src/string/strncmp.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strncpy.cxx b/packages/language/c/libc/current/src/string/strncpy.cxx --- a/packages/language/c/libc/current/src/string/strncpy.cxx +++ b/packages/language/c/libc/current/src/string/strncpy.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strpbrk.cxx b/packages/language/c/libc/current/src/string/strpbrk.cxx --- a/packages/language/c/libc/current/src/string/strpbrk.cxx +++ b/packages/language/c/libc/current/src/string/strpbrk.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strrchr.cxx b/packages/language/c/libc/current/src/string/strrchr.cxx --- a/packages/language/c/libc/current/src/string/strrchr.cxx +++ b/packages/language/c/libc/current/src/string/strrchr.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strspn.cxx b/packages/language/c/libc/current/src/string/strspn.cxx --- a/packages/language/c/libc/current/src/string/strspn.cxx +++ b/packages/language/c/libc/current/src/string/strspn.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strstr.cxx b/packages/language/c/libc/current/src/string/strstr.cxx --- a/packages/language/c/libc/current/src/string/strstr.cxx +++ b/packages/language/c/libc/current/src/string/strstr.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strsuppt.cxx b/packages/language/c/libc/current/src/string/strsuppt.cxx --- a/packages/language/c/libc/current/src/string/strsuppt.cxx +++ b/packages/language/c/libc/current/src/string/strsuppt.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strtok.cxx b/packages/language/c/libc/current/src/string/strtok.cxx --- a/packages/language/c/libc/current/src/string/strtok.cxx +++ b/packages/language/c/libc/current/src/string/strtok.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/string/strxfrm.cxx b/packages/language/c/libc/current/src/string/strxfrm.cxx --- a/packages/language/c/libc/current/src/string/strxfrm.cxx +++ b/packages/language/c/libc/current/src/string/strxfrm.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/support/cstartup.cxx b/packages/language/c/libc/current/src/support/cstartup.cxx --- a/packages/language/c/libc/current/src/support/cstartup.cxx +++ b/packages/language/c/libc/current/src/support/cstartup.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/support/environ.cxx b/packages/language/c/libc/current/src/support/environ.cxx --- a/packages/language/c/libc/current/src/support/environ.cxx +++ b/packages/language/c/libc/current/src/support/environ.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/support/invokemain.cxx b/packages/language/c/libc/current/src/support/invokemain.cxx --- a/packages/language/c/libc/current/src/support/invokemain.cxx +++ b/packages/language/c/libc/current/src/support/invokemain.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/support/main.cxx b/packages/language/c/libc/current/src/support/main.cxx --- a/packages/language/c/libc/current/src/support/main.cxx +++ b/packages/language/c/libc/current/src/support/main.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/support/mainthread.cxx b/packages/language/c/libc/current/src/support/mainthread.cxx --- a/packages/language/c/libc/current/src/support/mainthread.cxx +++ b/packages/language/c/libc/current/src/support/mainthread.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/asctime.cxx b/packages/language/c/libc/current/src/time/asctime.cxx --- a/packages/language/c/libc/current/src/time/asctime.cxx +++ b/packages/language/c/libc/current/src/time/asctime.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/asctime_r.cxx b/packages/language/c/libc/current/src/time/asctime_r.cxx --- a/packages/language/c/libc/current/src/time/asctime_r.cxx +++ b/packages/language/c/libc/current/src/time/asctime_r.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/clock.cxx b/packages/language/c/libc/current/src/time/clock.cxx --- a/packages/language/c/libc/current/src/time/clock.cxx +++ b/packages/language/c/libc/current/src/time/clock.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/ctime.cxx b/packages/language/c/libc/current/src/time/ctime.cxx --- a/packages/language/c/libc/current/src/time/ctime.cxx +++ b/packages/language/c/libc/current/src/time/ctime.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/ctime_r.cxx b/packages/language/c/libc/current/src/time/ctime_r.cxx --- a/packages/language/c/libc/current/src/time/ctime_r.cxx +++ b/packages/language/c/libc/current/src/time/ctime_r.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/difftime.cxx b/packages/language/c/libc/current/src/time/difftime.cxx --- a/packages/language/c/libc/current/src/time/difftime.cxx +++ b/packages/language/c/libc/current/src/time/difftime.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/gmtime.cxx b/packages/language/c/libc/current/src/time/gmtime.cxx --- a/packages/language/c/libc/current/src/time/gmtime.cxx +++ b/packages/language/c/libc/current/src/time/gmtime.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/gmtime_r.cxx b/packages/language/c/libc/current/src/time/gmtime_r.cxx --- a/packages/language/c/libc/current/src/time/gmtime_r.cxx +++ b/packages/language/c/libc/current/src/time/gmtime_r.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/localtime.cxx b/packages/language/c/libc/current/src/time/localtime.cxx --- a/packages/language/c/libc/current/src/time/localtime.cxx +++ b/packages/language/c/libc/current/src/time/localtime.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/localtime_r.cxx b/packages/language/c/libc/current/src/time/localtime_r.cxx --- a/packages/language/c/libc/current/src/time/localtime_r.cxx +++ b/packages/language/c/libc/current/src/time/localtime_r.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/mktime.cxx b/packages/language/c/libc/current/src/time/mktime.cxx --- a/packages/language/c/libc/current/src/time/mktime.cxx +++ b/packages/language/c/libc/current/src/time/mktime.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/settime.cxx b/packages/language/c/libc/current/src/time/settime.cxx --- a/packages/language/c/libc/current/src/time/settime.cxx +++ b/packages/language/c/libc/current/src/time/settime.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/strftime.cxx b/packages/language/c/libc/current/src/time/strftime.cxx --- a/packages/language/c/libc/current/src/time/strftime.cxx +++ b/packages/language/c/libc/current/src/time/strftime.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/time.cxx b/packages/language/c/libc/current/src/time/time.cxx --- a/packages/language/c/libc/current/src/time/time.cxx +++ b/packages/language/c/libc/current/src/time/time.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/src/time/timeutil.cxx b/packages/language/c/libc/current/src/time/timeutil.cxx --- a/packages/language/c/libc/current/src/time/timeutil.cxx +++ b/packages/language/c/libc/current/src/time/timeutil.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/PKGconf.mak b/packages/language/c/libc/current/tests/PKGconf.mak --- a/packages/language/c/libc/current/tests/PKGconf.mak +++ b/packages/language/c/libc/current/tests/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/language/c/libc/current/tests/ctype/ctype.c b/packages/language/c/libc/current/tests/ctype/ctype.c --- a/packages/language/c/libc/current/tests/ctype/ctype.c +++ b/packages/language/c/libc/current/tests/ctype/ctype.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/i18n/setlocale.c b/packages/language/c/libc/current/tests/i18n/setlocale.c --- a/packages/language/c/libc/current/tests/i18n/setlocale.c +++ b/packages/language/c/libc/current/tests/i18n/setlocale.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/setjmp/setjmp.c b/packages/language/c/libc/current/tests/setjmp/setjmp.c --- a/packages/language/c/libc/current/tests/setjmp/setjmp.c +++ b/packages/language/c/libc/current/tests/setjmp/setjmp.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/signal/signal1.c b/packages/language/c/libc/current/tests/signal/signal1.c --- a/packages/language/c/libc/current/tests/signal/signal1.c +++ b/packages/language/c/libc/current/tests/signal/signal1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/signal/signal2.c b/packages/language/c/libc/current/tests/signal/signal2.c --- a/packages/language/c/libc/current/tests/signal/signal2.c +++ b/packages/language/c/libc/current/tests/signal/signal2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdio/sprintf1.c b/packages/language/c/libc/current/tests/stdio/sprintf1.c --- a/packages/language/c/libc/current/tests/stdio/sprintf1.c +++ b/packages/language/c/libc/current/tests/stdio/sprintf1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdio/sprintf2.c b/packages/language/c/libc/current/tests/stdio/sprintf2.c --- a/packages/language/c/libc/current/tests/stdio/sprintf2.c +++ b/packages/language/c/libc/current/tests/stdio/sprintf2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdio/sscanf.c b/packages/language/c/libc/current/tests/stdio/sscanf.c --- a/packages/language/c/libc/current/tests/stdio/sscanf.c +++ b/packages/language/c/libc/current/tests/stdio/sscanf.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdio/stdiooutput.c b/packages/language/c/libc/current/tests/stdio/stdiooutput.c --- a/packages/language/c/libc/current/tests/stdio/stdiooutput.c +++ b/packages/language/c/libc/current/tests/stdio/stdiooutput.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/abs.c b/packages/language/c/libc/current/tests/stdlib/abs.c --- a/packages/language/c/libc/current/tests/stdlib/abs.c +++ b/packages/language/c/libc/current/tests/stdlib/abs.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/atexit.c b/packages/language/c/libc/current/tests/stdlib/atexit.c --- a/packages/language/c/libc/current/tests/stdlib/atexit.c +++ b/packages/language/c/libc/current/tests/stdlib/atexit.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/atoi.c b/packages/language/c/libc/current/tests/stdlib/atoi.c --- a/packages/language/c/libc/current/tests/stdlib/atoi.c +++ b/packages/language/c/libc/current/tests/stdlib/atoi.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/atol.c b/packages/language/c/libc/current/tests/stdlib/atol.c --- a/packages/language/c/libc/current/tests/stdlib/atol.c +++ b/packages/language/c/libc/current/tests/stdlib/atol.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/bsearch.c b/packages/language/c/libc/current/tests/stdlib/bsearch.c --- a/packages/language/c/libc/current/tests/stdlib/bsearch.c +++ b/packages/language/c/libc/current/tests/stdlib/bsearch.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/div.c b/packages/language/c/libc/current/tests/stdlib/div.c --- a/packages/language/c/libc/current/tests/stdlib/div.c +++ b/packages/language/c/libc/current/tests/stdlib/div.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/getenv.c b/packages/language/c/libc/current/tests/stdlib/getenv.c --- a/packages/language/c/libc/current/tests/stdlib/getenv.c +++ b/packages/language/c/libc/current/tests/stdlib/getenv.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/labs.c b/packages/language/c/libc/current/tests/stdlib/labs.c --- a/packages/language/c/libc/current/tests/stdlib/labs.c +++ b/packages/language/c/libc/current/tests/stdlib/labs.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/ldiv.c b/packages/language/c/libc/current/tests/stdlib/ldiv.c --- a/packages/language/c/libc/current/tests/stdlib/ldiv.c +++ b/packages/language/c/libc/current/tests/stdlib/ldiv.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/malloc1.c b/packages/language/c/libc/current/tests/stdlib/malloc1.c --- a/packages/language/c/libc/current/tests/stdlib/malloc1.c +++ b/packages/language/c/libc/current/tests/stdlib/malloc1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/malloc2.c b/packages/language/c/libc/current/tests/stdlib/malloc2.c --- a/packages/language/c/libc/current/tests/stdlib/malloc2.c +++ b/packages/language/c/libc/current/tests/stdlib/malloc2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/malloc3.c b/packages/language/c/libc/current/tests/stdlib/malloc3.c --- a/packages/language/c/libc/current/tests/stdlib/malloc3.c +++ b/packages/language/c/libc/current/tests/stdlib/malloc3.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/qsort.c b/packages/language/c/libc/current/tests/stdlib/qsort.c --- a/packages/language/c/libc/current/tests/stdlib/qsort.c +++ b/packages/language/c/libc/current/tests/stdlib/qsort.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/rand1.c b/packages/language/c/libc/current/tests/stdlib/rand1.c --- a/packages/language/c/libc/current/tests/stdlib/rand1.c +++ b/packages/language/c/libc/current/tests/stdlib/rand1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/rand2.c b/packages/language/c/libc/current/tests/stdlib/rand2.c --- a/packages/language/c/libc/current/tests/stdlib/rand2.c +++ b/packages/language/c/libc/current/tests/stdlib/rand2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/rand3.c b/packages/language/c/libc/current/tests/stdlib/rand3.c --- a/packages/language/c/libc/current/tests/stdlib/rand3.c +++ b/packages/language/c/libc/current/tests/stdlib/rand3.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/rand4.c b/packages/language/c/libc/current/tests/stdlib/rand4.c --- a/packages/language/c/libc/current/tests/stdlib/rand4.c +++ b/packages/language/c/libc/current/tests/stdlib/rand4.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/realloc.c b/packages/language/c/libc/current/tests/stdlib/realloc.c --- a/packages/language/c/libc/current/tests/stdlib/realloc.c +++ b/packages/language/c/libc/current/tests/stdlib/realloc.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/srand.c b/packages/language/c/libc/current/tests/stdlib/srand.c --- a/packages/language/c/libc/current/tests/stdlib/srand.c +++ b/packages/language/c/libc/current/tests/stdlib/srand.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/strtol.c b/packages/language/c/libc/current/tests/stdlib/strtol.c --- a/packages/language/c/libc/current/tests/stdlib/strtol.c +++ b/packages/language/c/libc/current/tests/stdlib/strtol.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/stdlib/strtoul.c b/packages/language/c/libc/current/tests/stdlib/strtoul.c --- a/packages/language/c/libc/current/tests/stdlib/strtoul.c +++ b/packages/language/c/libc/current/tests/stdlib/strtoul.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/memchr.c b/packages/language/c/libc/current/tests/string/memchr.c --- a/packages/language/c/libc/current/tests/string/memchr.c +++ b/packages/language/c/libc/current/tests/string/memchr.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/memcmp1.c b/packages/language/c/libc/current/tests/string/memcmp1.c --- a/packages/language/c/libc/current/tests/string/memcmp1.c +++ b/packages/language/c/libc/current/tests/string/memcmp1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/memcmp2.c b/packages/language/c/libc/current/tests/string/memcmp2.c --- a/packages/language/c/libc/current/tests/string/memcmp2.c +++ b/packages/language/c/libc/current/tests/string/memcmp2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/memcpy1.c b/packages/language/c/libc/current/tests/string/memcpy1.c --- a/packages/language/c/libc/current/tests/string/memcpy1.c +++ b/packages/language/c/libc/current/tests/string/memcpy1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/memcpy2.c b/packages/language/c/libc/current/tests/string/memcpy2.c --- a/packages/language/c/libc/current/tests/string/memcpy2.c +++ b/packages/language/c/libc/current/tests/string/memcpy2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/memmove1.c b/packages/language/c/libc/current/tests/string/memmove1.c --- a/packages/language/c/libc/current/tests/string/memmove1.c +++ b/packages/language/c/libc/current/tests/string/memmove1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/memmove2.c b/packages/language/c/libc/current/tests/string/memmove2.c --- a/packages/language/c/libc/current/tests/string/memmove2.c +++ b/packages/language/c/libc/current/tests/string/memmove2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/memset.c b/packages/language/c/libc/current/tests/string/memset.c --- a/packages/language/c/libc/current/tests/string/memset.c +++ b/packages/language/c/libc/current/tests/string/memset.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strcat1.c b/packages/language/c/libc/current/tests/string/strcat1.c --- a/packages/language/c/libc/current/tests/string/strcat1.c +++ b/packages/language/c/libc/current/tests/string/strcat1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strcat2.c b/packages/language/c/libc/current/tests/string/strcat2.c --- a/packages/language/c/libc/current/tests/string/strcat2.c +++ b/packages/language/c/libc/current/tests/string/strcat2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strchr.c b/packages/language/c/libc/current/tests/string/strchr.c --- a/packages/language/c/libc/current/tests/string/strchr.c +++ b/packages/language/c/libc/current/tests/string/strchr.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strcmp1.c b/packages/language/c/libc/current/tests/string/strcmp1.c --- a/packages/language/c/libc/current/tests/string/strcmp1.c +++ b/packages/language/c/libc/current/tests/string/strcmp1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strcmp2.c b/packages/language/c/libc/current/tests/string/strcmp2.c --- a/packages/language/c/libc/current/tests/string/strcmp2.c +++ b/packages/language/c/libc/current/tests/string/strcmp2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strcoll1.c b/packages/language/c/libc/current/tests/string/strcoll1.c --- a/packages/language/c/libc/current/tests/string/strcoll1.c +++ b/packages/language/c/libc/current/tests/string/strcoll1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strcoll2.c b/packages/language/c/libc/current/tests/string/strcoll2.c --- a/packages/language/c/libc/current/tests/string/strcoll2.c +++ b/packages/language/c/libc/current/tests/string/strcoll2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strcpy1.c b/packages/language/c/libc/current/tests/string/strcpy1.c --- a/packages/language/c/libc/current/tests/string/strcpy1.c +++ b/packages/language/c/libc/current/tests/string/strcpy1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strcpy2.c b/packages/language/c/libc/current/tests/string/strcpy2.c --- a/packages/language/c/libc/current/tests/string/strcpy2.c +++ b/packages/language/c/libc/current/tests/string/strcpy2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strcspn.c b/packages/language/c/libc/current/tests/string/strcspn.c --- a/packages/language/c/libc/current/tests/string/strcspn.c +++ b/packages/language/c/libc/current/tests/string/strcspn.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strlen.c b/packages/language/c/libc/current/tests/string/strlen.c --- a/packages/language/c/libc/current/tests/string/strlen.c +++ b/packages/language/c/libc/current/tests/string/strlen.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strncat1.c b/packages/language/c/libc/current/tests/string/strncat1.c --- a/packages/language/c/libc/current/tests/string/strncat1.c +++ b/packages/language/c/libc/current/tests/string/strncat1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strncat2.c b/packages/language/c/libc/current/tests/string/strncat2.c --- a/packages/language/c/libc/current/tests/string/strncat2.c +++ b/packages/language/c/libc/current/tests/string/strncat2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strncpy1.c b/packages/language/c/libc/current/tests/string/strncpy1.c --- a/packages/language/c/libc/current/tests/string/strncpy1.c +++ b/packages/language/c/libc/current/tests/string/strncpy1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strncpy2.c b/packages/language/c/libc/current/tests/string/strncpy2.c --- a/packages/language/c/libc/current/tests/string/strncpy2.c +++ b/packages/language/c/libc/current/tests/string/strncpy2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strpbrk.c b/packages/language/c/libc/current/tests/string/strpbrk.c --- a/packages/language/c/libc/current/tests/string/strpbrk.c +++ b/packages/language/c/libc/current/tests/string/strpbrk.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strrchr.c b/packages/language/c/libc/current/tests/string/strrchr.c --- a/packages/language/c/libc/current/tests/string/strrchr.c +++ b/packages/language/c/libc/current/tests/string/strrchr.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strspn.c b/packages/language/c/libc/current/tests/string/strspn.c --- a/packages/language/c/libc/current/tests/string/strspn.c +++ b/packages/language/c/libc/current/tests/string/strspn.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strstr.c b/packages/language/c/libc/current/tests/string/strstr.c --- a/packages/language/c/libc/current/tests/string/strstr.c +++ b/packages/language/c/libc/current/tests/string/strstr.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strtok.c b/packages/language/c/libc/current/tests/string/strtok.c --- a/packages/language/c/libc/current/tests/string/strtok.c +++ b/packages/language/c/libc/current/tests/string/strtok.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strxfrm1.c b/packages/language/c/libc/current/tests/string/strxfrm1.c --- a/packages/language/c/libc/current/tests/string/strxfrm1.c +++ b/packages/language/c/libc/current/tests/string/strxfrm1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/string/strxfrm2.c b/packages/language/c/libc/current/tests/string/strxfrm2.c --- a/packages/language/c/libc/current/tests/string/strxfrm2.c +++ b/packages/language/c/libc/current/tests/string/strxfrm2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/time/asctime.c b/packages/language/c/libc/current/tests/time/asctime.c --- a/packages/language/c/libc/current/tests/time/asctime.c +++ b/packages/language/c/libc/current/tests/time/asctime.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/time/clock.c b/packages/language/c/libc/current/tests/time/clock.c --- a/packages/language/c/libc/current/tests/time/clock.c +++ b/packages/language/c/libc/current/tests/time/clock.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/time/ctime.c b/packages/language/c/libc/current/tests/time/ctime.c --- a/packages/language/c/libc/current/tests/time/ctime.c +++ b/packages/language/c/libc/current/tests/time/ctime.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/time/gmtime.c b/packages/language/c/libc/current/tests/time/gmtime.c --- a/packages/language/c/libc/current/tests/time/gmtime.c +++ b/packages/language/c/libc/current/tests/time/gmtime.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/time/localtime.c b/packages/language/c/libc/current/tests/time/localtime.c --- a/packages/language/c/libc/current/tests/time/localtime.c +++ b/packages/language/c/libc/current/tests/time/localtime.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/time/mktime.c b/packages/language/c/libc/current/tests/time/mktime.c --- a/packages/language/c/libc/current/tests/time/mktime.c +++ b/packages/language/c/libc/current/tests/time/mktime.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/time/strftime.c b/packages/language/c/libc/current/tests/time/strftime.c --- a/packages/language/c/libc/current/tests/time/strftime.c +++ b/packages/language/c/libc/current/tests/time/strftime.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libc/current/tests/time/time.c b/packages/language/c/libc/current/tests/time/time.c --- a/packages/language/c/libc/current/tests/time/time.c +++ b/packages/language/c/libc/current/tests/time/time.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/ChangeLog b/packages/language/c/libm/current/ChangeLog --- a/packages/language/c/libm/current/ChangeLog +++ b/packages/language/c/libm/current/ChangeLog @@ -665,11 +665,11 @@ Fri Jun 5 07:07:03 1998 Jonathan Larmo // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/include/math.h b/packages/language/c/libm/current/include/math.h --- a/packages/language/c/libm/current/include/math.h +++ b/packages/language/c/libm/current/include/math.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/include/pkgconf/libm.h b/packages/language/c/libm/current/include/pkgconf/libm.h --- a/packages/language/c/libm/current/include/pkgconf/libm.h +++ b/packages/language/c/libm/current/include/pkgconf/libm.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/include/sys/ieeefp.h b/packages/language/c/libm/current/include/sys/ieeefp.h --- a/packages/language/c/libm/current/include/sys/ieeefp.h +++ b/packages/language/c/libm/current/include/sys/ieeefp.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/PKGconf.mak b/packages/language/c/libm/current/src/PKGconf.mak --- a/packages/language/c/libm/current/src/PKGconf.mak +++ b/packages/language/c/libm/current/src/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-api/w_acos.c b/packages/language/c/libm/current/src/double/ieee754-api/w_acos.c --- a/packages/language/c/libm/current/src/double/ieee754-api/w_acos.c +++ b/packages/language/c/libm/current/src/double/ieee754-api/w_acos.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-api/w_asin.c b/packages/language/c/libm/current/src/double/ieee754-api/w_asin.c --- a/packages/language/c/libm/current/src/double/ieee754-api/w_asin.c +++ b/packages/language/c/libm/current/src/double/ieee754-api/w_asin.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-api/w_atan2.c b/packages/language/c/libm/current/src/double/ieee754-api/w_atan2.c --- a/packages/language/c/libm/current/src/double/ieee754-api/w_atan2.c +++ b/packages/language/c/libm/current/src/double/ieee754-api/w_atan2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-api/w_cosh.c b/packages/language/c/libm/current/src/double/ieee754-api/w_cosh.c --- a/packages/language/c/libm/current/src/double/ieee754-api/w_cosh.c +++ b/packages/language/c/libm/current/src/double/ieee754-api/w_cosh.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-api/w_exp.c b/packages/language/c/libm/current/src/double/ieee754-api/w_exp.c --- a/packages/language/c/libm/current/src/double/ieee754-api/w_exp.c +++ b/packages/language/c/libm/current/src/double/ieee754-api/w_exp.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-api/w_fmod.c b/packages/language/c/libm/current/src/double/ieee754-api/w_fmod.c --- a/packages/language/c/libm/current/src/double/ieee754-api/w_fmod.c +++ b/packages/language/c/libm/current/src/double/ieee754-api/w_fmod.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-api/w_log.c b/packages/language/c/libm/current/src/double/ieee754-api/w_log.c --- a/packages/language/c/libm/current/src/double/ieee754-api/w_log.c +++ b/packages/language/c/libm/current/src/double/ieee754-api/w_log.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-api/w_log10.c b/packages/language/c/libm/current/src/double/ieee754-api/w_log10.c --- a/packages/language/c/libm/current/src/double/ieee754-api/w_log10.c +++ b/packages/language/c/libm/current/src/double/ieee754-api/w_log10.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-api/w_pow.c b/packages/language/c/libm/current/src/double/ieee754-api/w_pow.c --- a/packages/language/c/libm/current/src/double/ieee754-api/w_pow.c +++ b/packages/language/c/libm/current/src/double/ieee754-api/w_pow.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-api/w_scalb.c b/packages/language/c/libm/current/src/double/ieee754-api/w_scalb.c --- a/packages/language/c/libm/current/src/double/ieee754-api/w_scalb.c +++ b/packages/language/c/libm/current/src/double/ieee754-api/w_scalb.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-api/w_sinh.c b/packages/language/c/libm/current/src/double/ieee754-api/w_sinh.c --- a/packages/language/c/libm/current/src/double/ieee754-api/w_sinh.c +++ b/packages/language/c/libm/current/src/double/ieee754-api/w_sinh.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-api/w_sqrt.c b/packages/language/c/libm/current/src/double/ieee754-api/w_sqrt.c --- a/packages/language/c/libm/current/src/double/ieee754-api/w_sqrt.c +++ b/packages/language/c/libm/current/src/double/ieee754-api/w_sqrt.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_acos.c b/packages/language/c/libm/current/src/double/ieee754-core/e_acos.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_acos.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_acos.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_asin.c b/packages/language/c/libm/current/src/double/ieee754-core/e_asin.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_asin.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_asin.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_atan2.c b/packages/language/c/libm/current/src/double/ieee754-core/e_atan2.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_atan2.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_atan2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_cosh.c b/packages/language/c/libm/current/src/double/ieee754-core/e_cosh.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_cosh.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_cosh.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_exp.c b/packages/language/c/libm/current/src/double/ieee754-core/e_exp.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_exp.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_exp.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_fmod.c b/packages/language/c/libm/current/src/double/ieee754-core/e_fmod.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_fmod.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_fmod.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_log.c b/packages/language/c/libm/current/src/double/ieee754-core/e_log.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_log.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_log.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_log10.c b/packages/language/c/libm/current/src/double/ieee754-core/e_log10.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_log10.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_log10.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_pow.c b/packages/language/c/libm/current/src/double/ieee754-core/e_pow.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_pow.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_pow.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_rem_pio2.c b/packages/language/c/libm/current/src/double/ieee754-core/e_rem_pio2.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_rem_pio2.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_rem_pio2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_scalb.c b/packages/language/c/libm/current/src/double/ieee754-core/e_scalb.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_scalb.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_scalb.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_sinh.c b/packages/language/c/libm/current/src/double/ieee754-core/e_sinh.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_sinh.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_sinh.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/ieee754-core/e_sqrt.c b/packages/language/c/libm/current/src/double/ieee754-core/e_sqrt.c --- a/packages/language/c/libm/current/src/double/ieee754-core/e_sqrt.c +++ b/packages/language/c/libm/current/src/double/ieee754-core/e_sqrt.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/internal/k_cos.c b/packages/language/c/libm/current/src/double/internal/k_cos.c --- a/packages/language/c/libm/current/src/double/internal/k_cos.c +++ b/packages/language/c/libm/current/src/double/internal/k_cos.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/internal/k_rem_pio2.c b/packages/language/c/libm/current/src/double/internal/k_rem_pio2.c --- a/packages/language/c/libm/current/src/double/internal/k_rem_pio2.c +++ b/packages/language/c/libm/current/src/double/internal/k_rem_pio2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/internal/k_sin.c b/packages/language/c/libm/current/src/double/internal/k_sin.c --- a/packages/language/c/libm/current/src/double/internal/k_sin.c +++ b/packages/language/c/libm/current/src/double/internal/k_sin.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/internal/k_tan.c b/packages/language/c/libm/current/src/double/internal/k_tan.c --- a/packages/language/c/libm/current/src/double/internal/k_tan.c +++ b/packages/language/c/libm/current/src/double/internal/k_tan.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_atan.c b/packages/language/c/libm/current/src/double/portable-api/s_atan.c --- a/packages/language/c/libm/current/src/double/portable-api/s_atan.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_atan.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_ceil.c b/packages/language/c/libm/current/src/double/portable-api/s_ceil.c --- a/packages/language/c/libm/current/src/double/portable-api/s_ceil.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_ceil.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_copysign.c b/packages/language/c/libm/current/src/double/portable-api/s_copysign.c --- a/packages/language/c/libm/current/src/double/portable-api/s_copysign.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_copysign.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_cos.c b/packages/language/c/libm/current/src/double/portable-api/s_cos.c --- a/packages/language/c/libm/current/src/double/portable-api/s_cos.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_cos.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_expm1.c b/packages/language/c/libm/current/src/double/portable-api/s_expm1.c --- a/packages/language/c/libm/current/src/double/portable-api/s_expm1.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_expm1.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_fabs.c b/packages/language/c/libm/current/src/double/portable-api/s_fabs.c --- a/packages/language/c/libm/current/src/double/portable-api/s_fabs.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_fabs.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_finite.c b/packages/language/c/libm/current/src/double/portable-api/s_finite.c --- a/packages/language/c/libm/current/src/double/portable-api/s_finite.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_finite.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_floor.c b/packages/language/c/libm/current/src/double/portable-api/s_floor.c --- a/packages/language/c/libm/current/src/double/portable-api/s_floor.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_floor.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_frexp.c b/packages/language/c/libm/current/src/double/portable-api/s_frexp.c --- a/packages/language/c/libm/current/src/double/portable-api/s_frexp.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_frexp.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_isnan.c b/packages/language/c/libm/current/src/double/portable-api/s_isnan.c --- a/packages/language/c/libm/current/src/double/portable-api/s_isnan.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_isnan.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_ldexp.c b/packages/language/c/libm/current/src/double/portable-api/s_ldexp.c --- a/packages/language/c/libm/current/src/double/portable-api/s_ldexp.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_ldexp.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_modf.c b/packages/language/c/libm/current/src/double/portable-api/s_modf.c --- a/packages/language/c/libm/current/src/double/portable-api/s_modf.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_modf.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_rint.c b/packages/language/c/libm/current/src/double/portable-api/s_rint.c --- a/packages/language/c/libm/current/src/double/portable-api/s_rint.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_rint.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_scalbn.c b/packages/language/c/libm/current/src/double/portable-api/s_scalbn.c --- a/packages/language/c/libm/current/src/double/portable-api/s_scalbn.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_scalbn.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_sin.c b/packages/language/c/libm/current/src/double/portable-api/s_sin.c --- a/packages/language/c/libm/current/src/double/portable-api/s_sin.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_sin.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_tan.c b/packages/language/c/libm/current/src/double/portable-api/s_tan.c --- a/packages/language/c/libm/current/src/double/portable-api/s_tan.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_tan.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/double/portable-api/s_tanh.c b/packages/language/c/libm/current/src/double/portable-api/s_tanh.c --- a/packages/language/c/libm/current/src/double/portable-api/s_tanh.c +++ b/packages/language/c/libm/current/src/double/portable-api/s_tanh.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/mathincl/fdlibm.h b/packages/language/c/libm/current/src/mathincl/fdlibm.h --- a/packages/language/c/libm/current/src/mathincl/fdlibm.h +++ b/packages/language/c/libm/current/src/mathincl/fdlibm.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/misc/compatmode.cxx b/packages/language/c/libm/current/src/misc/compatmode.cxx --- a/packages/language/c/libm/current/src/misc/compatmode.cxx +++ b/packages/language/c/libm/current/src/misc/compatmode.cxx @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/misc/infconst.c b/packages/language/c/libm/current/src/misc/infconst.c --- a/packages/language/c/libm/current/src/misc/infconst.c +++ b/packages/language/c/libm/current/src/misc/infconst.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/misc/matherr.c b/packages/language/c/libm/current/src/misc/matherr.c --- a/packages/language/c/libm/current/src/misc/matherr.c +++ b/packages/language/c/libm/current/src/misc/matherr.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/src/misc/standard.c b/packages/language/c/libm/current/src/misc/standard.c --- a/packages/language/c/libm/current/src/misc/standard.c +++ b/packages/language/c/libm/current/src/misc/standard.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/PKGconf.mak b/packages/language/c/libm/current/tests/PKGconf.mak --- a/packages/language/c/libm/current/tests/PKGconf.mak +++ b/packages/language/c/libm/current/tests/PKGconf.mak @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/language/c/libm/current/tests/vectors/acos.c b/packages/language/c/libm/current/tests/vectors/acos.c --- a/packages/language/c/libm/current/tests/vectors/acos.c +++ b/packages/language/c/libm/current/tests/vectors/acos.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/acos.h b/packages/language/c/libm/current/tests/vectors/acos.h --- a/packages/language/c/libm/current/tests/vectors/acos.h +++ b/packages/language/c/libm/current/tests/vectors/acos.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/asin.c b/packages/language/c/libm/current/tests/vectors/asin.c --- a/packages/language/c/libm/current/tests/vectors/asin.c +++ b/packages/language/c/libm/current/tests/vectors/asin.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/asin.h b/packages/language/c/libm/current/tests/vectors/asin.h --- a/packages/language/c/libm/current/tests/vectors/asin.h +++ b/packages/language/c/libm/current/tests/vectors/asin.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/atan.c b/packages/language/c/libm/current/tests/vectors/atan.c --- a/packages/language/c/libm/current/tests/vectors/atan.c +++ b/packages/language/c/libm/current/tests/vectors/atan.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/atan.h b/packages/language/c/libm/current/tests/vectors/atan.h --- a/packages/language/c/libm/current/tests/vectors/atan.h +++ b/packages/language/c/libm/current/tests/vectors/atan.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/atan2.c b/packages/language/c/libm/current/tests/vectors/atan2.c --- a/packages/language/c/libm/current/tests/vectors/atan2.c +++ b/packages/language/c/libm/current/tests/vectors/atan2.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/atan2.h b/packages/language/c/libm/current/tests/vectors/atan2.h --- a/packages/language/c/libm/current/tests/vectors/atan2.h +++ b/packages/language/c/libm/current/tests/vectors/atan2.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/ceil.c b/packages/language/c/libm/current/tests/vectors/ceil.c --- a/packages/language/c/libm/current/tests/vectors/ceil.c +++ b/packages/language/c/libm/current/tests/vectors/ceil.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/ceil.h b/packages/language/c/libm/current/tests/vectors/ceil.h --- a/packages/language/c/libm/current/tests/vectors/ceil.h +++ b/packages/language/c/libm/current/tests/vectors/ceil.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/cos.c b/packages/language/c/libm/current/tests/vectors/cos.c --- a/packages/language/c/libm/current/tests/vectors/cos.c +++ b/packages/language/c/libm/current/tests/vectors/cos.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/cos.h b/packages/language/c/libm/current/tests/vectors/cos.h --- a/packages/language/c/libm/current/tests/vectors/cos.h +++ b/packages/language/c/libm/current/tests/vectors/cos.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/cosh.c b/packages/language/c/libm/current/tests/vectors/cosh.c --- a/packages/language/c/libm/current/tests/vectors/cosh.c +++ b/packages/language/c/libm/current/tests/vectors/cosh.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/cosh.h b/packages/language/c/libm/current/tests/vectors/cosh.h --- a/packages/language/c/libm/current/tests/vectors/cosh.h +++ b/packages/language/c/libm/current/tests/vectors/cosh.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/exp.c b/packages/language/c/libm/current/tests/vectors/exp.c --- a/packages/language/c/libm/current/tests/vectors/exp.c +++ b/packages/language/c/libm/current/tests/vectors/exp.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/exp.h b/packages/language/c/libm/current/tests/vectors/exp.h --- a/packages/language/c/libm/current/tests/vectors/exp.h +++ b/packages/language/c/libm/current/tests/vectors/exp.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/fabs.c b/packages/language/c/libm/current/tests/vectors/fabs.c --- a/packages/language/c/libm/current/tests/vectors/fabs.c +++ b/packages/language/c/libm/current/tests/vectors/fabs.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/fabs.h b/packages/language/c/libm/current/tests/vectors/fabs.h --- a/packages/language/c/libm/current/tests/vectors/fabs.h +++ b/packages/language/c/libm/current/tests/vectors/fabs.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/floor.c b/packages/language/c/libm/current/tests/vectors/floor.c --- a/packages/language/c/libm/current/tests/vectors/floor.c +++ b/packages/language/c/libm/current/tests/vectors/floor.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/floor.h b/packages/language/c/libm/current/tests/vectors/floor.h --- a/packages/language/c/libm/current/tests/vectors/floor.h +++ b/packages/language/c/libm/current/tests/vectors/floor.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/fmod.c b/packages/language/c/libm/current/tests/vectors/fmod.c --- a/packages/language/c/libm/current/tests/vectors/fmod.c +++ b/packages/language/c/libm/current/tests/vectors/fmod.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/fmod.h b/packages/language/c/libm/current/tests/vectors/fmod.h --- a/packages/language/c/libm/current/tests/vectors/fmod.h +++ b/packages/language/c/libm/current/tests/vectors/fmod.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/frexp.c b/packages/language/c/libm/current/tests/vectors/frexp.c --- a/packages/language/c/libm/current/tests/vectors/frexp.c +++ b/packages/language/c/libm/current/tests/vectors/frexp.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/frexp.h b/packages/language/c/libm/current/tests/vectors/frexp.h --- a/packages/language/c/libm/current/tests/vectors/frexp.h +++ b/packages/language/c/libm/current/tests/vectors/frexp.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/ldexp.c b/packages/language/c/libm/current/tests/vectors/ldexp.c --- a/packages/language/c/libm/current/tests/vectors/ldexp.c +++ b/packages/language/c/libm/current/tests/vectors/ldexp.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/ldexp.h b/packages/language/c/libm/current/tests/vectors/ldexp.h --- a/packages/language/c/libm/current/tests/vectors/ldexp.h +++ b/packages/language/c/libm/current/tests/vectors/ldexp.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/log.c b/packages/language/c/libm/current/tests/vectors/log.c --- a/packages/language/c/libm/current/tests/vectors/log.c +++ b/packages/language/c/libm/current/tests/vectors/log.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/log.h b/packages/language/c/libm/current/tests/vectors/log.h --- a/packages/language/c/libm/current/tests/vectors/log.h +++ b/packages/language/c/libm/current/tests/vectors/log.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/log10.c b/packages/language/c/libm/current/tests/vectors/log10.c --- a/packages/language/c/libm/current/tests/vectors/log10.c +++ b/packages/language/c/libm/current/tests/vectors/log10.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/log10.h b/packages/language/c/libm/current/tests/vectors/log10.h --- a/packages/language/c/libm/current/tests/vectors/log10.h +++ b/packages/language/c/libm/current/tests/vectors/log10.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/modf.c b/packages/language/c/libm/current/tests/vectors/modf.c --- a/packages/language/c/libm/current/tests/vectors/modf.c +++ b/packages/language/c/libm/current/tests/vectors/modf.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/modf.h b/packages/language/c/libm/current/tests/vectors/modf.h --- a/packages/language/c/libm/current/tests/vectors/modf.h +++ b/packages/language/c/libm/current/tests/vectors/modf.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/pow.c b/packages/language/c/libm/current/tests/vectors/pow.c --- a/packages/language/c/libm/current/tests/vectors/pow.c +++ b/packages/language/c/libm/current/tests/vectors/pow.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/pow.h b/packages/language/c/libm/current/tests/vectors/pow.h --- a/packages/language/c/libm/current/tests/vectors/pow.h +++ b/packages/language/c/libm/current/tests/vectors/pow.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/sin.c b/packages/language/c/libm/current/tests/vectors/sin.c --- a/packages/language/c/libm/current/tests/vectors/sin.c +++ b/packages/language/c/libm/current/tests/vectors/sin.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/sin.h b/packages/language/c/libm/current/tests/vectors/sin.h --- a/packages/language/c/libm/current/tests/vectors/sin.h +++ b/packages/language/c/libm/current/tests/vectors/sin.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/sinh.c b/packages/language/c/libm/current/tests/vectors/sinh.c --- a/packages/language/c/libm/current/tests/vectors/sinh.c +++ b/packages/language/c/libm/current/tests/vectors/sinh.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/sinh.h b/packages/language/c/libm/current/tests/vectors/sinh.h --- a/packages/language/c/libm/current/tests/vectors/sinh.h +++ b/packages/language/c/libm/current/tests/vectors/sinh.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/sqrt.c b/packages/language/c/libm/current/tests/vectors/sqrt.c --- a/packages/language/c/libm/current/tests/vectors/sqrt.c +++ b/packages/language/c/libm/current/tests/vectors/sqrt.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/sqrt.h b/packages/language/c/libm/current/tests/vectors/sqrt.h --- a/packages/language/c/libm/current/tests/vectors/sqrt.h +++ b/packages/language/c/libm/current/tests/vectors/sqrt.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/tan.c b/packages/language/c/libm/current/tests/vectors/tan.c --- a/packages/language/c/libm/current/tests/vectors/tan.c +++ b/packages/language/c/libm/current/tests/vectors/tan.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/tan.h b/packages/language/c/libm/current/tests/vectors/tan.h --- a/packages/language/c/libm/current/tests/vectors/tan.h +++ b/packages/language/c/libm/current/tests/vectors/tan.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/tanh.c b/packages/language/c/libm/current/tests/vectors/tanh.c --- a/packages/language/c/libm/current/tests/vectors/tanh.c +++ b/packages/language/c/libm/current/tests/vectors/tanh.c @@ -9,11 +9,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/tanh.h b/packages/language/c/libm/current/tests/vectors/tanh.h --- a/packages/language/c/libm/current/tests/vectors/tanh.h +++ b/packages/language/c/libm/current/tests/vectors/tanh.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/language/c/libm/current/tests/vectors/vector_support.h b/packages/language/c/libm/current/tests/vectors/vector_support.h --- a/packages/language/c/libm/current/tests/vectors/vector_support.h +++ b/packages/language/c/libm/current/tests/vectors/vector_support.h @@ -11,11 +11,11 @@ // // ------------------------------------------- // The contents of this file are subject to the Red Hat eCos Public License -// Version 1.0 (the "License"); you may not use this file except in +// Version 1.1 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at -// http://sourceware.cygnus.com/ecos +// http://www.redhat.com/ // -// Software distributed under the License is distributed on an +// Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations under // the License. diff --git a/packages/packages b/packages/packages --- a/packages/packages +++ b/packages/packages @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/pkgconf.tcl b/packages/pkgconf.tcl --- a/packages/pkgconf.tcl +++ b/packages/pkgconf.tcl @@ -11,11 +11,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/pkgconf/makevars b/packages/pkgconf/makevars --- a/packages/pkgconf/makevars +++ b/packages/pkgconf/makevars @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/pkgconf/makrules.prv b/packages/pkgconf/makrules.prv --- a/packages/pkgconf/makrules.prv +++ b/packages/pkgconf/makrules.prv @@ -11,11 +11,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/pkgconf/makrules.src b/packages/pkgconf/makrules.src --- a/packages/pkgconf/makrules.src +++ b/packages/pkgconf/makrules.src @@ -10,11 +10,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/pkgconf/makrules.tst b/packages/pkgconf/makrules.tst --- a/packages/pkgconf/makrules.tst +++ b/packages/pkgconf/makrules.tst @@ -10,11 +10,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License. diff --git a/packages/targets b/packages/targets --- a/packages/targets +++ b/packages/targets @@ -9,11 +9,11 @@ # # ------------------------------------------- # The contents of this file are subject to the Red Hat eCos Public License -# Version 1.0 (the "License"); you may not use this file except in +# Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at -# http://sourceware.cygnus.com/ecos +# http://www.redhat.com/ # -# Software distributed under the License is distributed on an +# Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations under # the License.