1 |
27 |
unneback |
2003-02-24 Jonathan Larmour
|
2 |
|
|
|
3 |
|
|
* cdl/signals.cdl: Fix doc link.
|
4 |
|
|
|
5 |
|
|
2003-02-13 Jonathan Larmour
|
6 |
|
|
|
7 |
|
|
* include/signal.inl (raise): Use if/else rather than switch to
|
8 |
|
|
avoid GCC 3.2 bug.
|
9 |
|
|
|
10 |
|
|
2002-05-23 Jesper Skov
|
11 |
|
|
|
12 |
|
|
* cdl/signals.cdl: Don't build signal2 test when it'll N/A
|
13 |
|
|
anyway.
|
14 |
|
|
|
15 |
|
|
2002-04-30 Jesper Skov
|
16 |
|
|
|
17 |
|
|
* cdl/signals.cdl: Added
|
18 |
|
|
CYGPKG_LIBC_SIGNALS_TESTS_SIGNAL2_TEST3_SKIP.
|
19 |
|
|
Removed again.
|
20 |
|
|
|
21 |
|
|
* tests/signal2.c: Instead check for
|
22 |
|
|
CYGNUM_HAL_EXCEPTION_FPU_DIV_BY_ZERO to decide if test3 is
|
23 |
|
|
appropriate.
|
24 |
|
|
|
25 |
|
|
2001-05-02 Nick Garnett
|
26 |
|
|
|
27 |
|
|
[x86 branch]
|
28 |
|
|
* tests/signal2.c (cause_memerror): Added code for I386
|
29 |
|
|
architecture to provoke General Protection Fault.
|
30 |
|
|
|
31 |
|
|
2001-04-27 Bart Veer
|
32 |
|
|
|
33 |
|
|
* tests/signal2.c (main):
|
34 |
|
|
The FPE test is applicable to the updated synthetic target.
|
35 |
|
|
|
36 |
|
|
2001-04-17 Bart Veer
|
37 |
|
|
|
38 |
|
|
* cdl/signals.cdl:
|
39 |
|
|
Synthetic target now supports exceptions
|
40 |
|
|
|
41 |
|
|
2000-09-14 Jesper Skov
|
42 |
|
|
|
43 |
|
|
* tests/signal/signal2.c: Prevent that GCC optimizes away the
|
44 |
|
|
cause_fpe call.
|
45 |
|
|
|
46 |
|
|
2000-09-07 Jesper Skov
|
47 |
|
|
|
48 |
|
|
* tests/signal2.c: Fix compiler warning. Also reset FPU exception
|
49 |
|
|
vectors. Check for SH7708, not EDK7708 in test3 skip code.
|
50 |
|
|
* tests/signal1.c: Fix compiler warning.
|
51 |
|
|
|
52 |
|
|
2000-05-16 Jesper Skov
|
53 |
|
|
|
54 |
|
|
* tests/signal2.c: Also reset DIV_BY_ZERO vector.
|
55 |
|
|
|
56 |
|
|
2000-05-08 Jesper Skov
|
57 |
|
|
|
58 |
|
|
* tests/signal2.c: Skip test3 on SH7709A.
|
59 |
|
|
|
60 |
|
|
2000-05-02 Jonathan Larmour
|
61 |
|
|
|
62 |
|
|
* New package
|
63 |
|
|
Separated original libc out into separate packages on functional
|
64 |
|
|
boundaries.
|
65 |
|
|
Header files are now managed by isoinfra package
|
66 |
|
|
Plenty of cleanups done, but no major functionality changes
|
67 |
|
|
|
68 |
|
|
//===========================================================================
|
69 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
70 |
|
|
// -------------------------------------------
|
71 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
72 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
73 |
|
|
//
|
74 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
75 |
|
|
// the terms of the GNU General Public License as published by the Free
|
76 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
77 |
|
|
//
|
78 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
79 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
80 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
81 |
|
|
// for more details.
|
82 |
|
|
//
|
83 |
|
|
// You should have received a copy of the GNU General Public License along
|
84 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
85 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
86 |
|
|
//
|
87 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
88 |
|
|
// or inline functions from this file, or you compile this file and link it
|
89 |
|
|
// with other works to produce a work based on this file, this file does not
|
90 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
91 |
|
|
// License. However the source code for this file must still be made available
|
92 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
93 |
|
|
//
|
94 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
95 |
|
|
// this file might be covered by the GNU General Public License.
|
96 |
|
|
//
|
97 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
98 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
99 |
|
|
// -------------------------------------------
|
100 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
101 |
|
|
//===========================================================================
|