1 |
786 |
skrzyp |
2012-03-06 Grant Edwards
|
2 |
|
|
|
3 |
|
|
* src/abort.cxx (abort):
|
4 |
|
|
* src/exit.cxx (exit): Fix compiler warnings about unused 'rc'
|
5 |
|
|
variables. [ Bugzilla 1001506 ]
|
6 |
|
|
|
7 |
|
|
2007-10-05 Jonathan Larmour
|
8 |
|
|
|
9 |
|
|
* src/main.cxx (main): Suspend main thread, rather than exit.
|
10 |
|
|
Thanks to Sergei Organov for the idea.
|
11 |
|
|
|
12 |
|
|
2007-09-11 Andrew Lunn
|
13 |
|
|
|
14 |
|
|
* src/cstartup.cxx: Change the INIT priority of
|
15 |
|
|
cyg_libc_startup_obj so that it is always called after the thread
|
16 |
|
|
has been constructed. Reported by taiyun@sunnorth.com.cn
|
17 |
|
|
|
18 |
|
|
2007-07-02 Gary Thomas
|
19 |
|
|
|
20 |
|
|
* cdl/startup.cdl: Add (char *) casts to make GCC/4.2.x happy.
|
21 |
|
|
|
22 |
|
|
2003-03-07 Jonathan Larmour
|
23 |
|
|
|
24 |
|
|
* src/mainthread.cxx: Align stack to relevant architecture alignment.
|
25 |
|
|
|
26 |
|
|
2003-02-24 Jonathan Larmour
|
27 |
|
|
|
28 |
|
|
* cdl/startup.cdl: Fix doc link.
|
29 |
|
|
|
30 |
|
|
2002-04-09 Jonathan Larmour
|
31 |
|
|
|
32 |
|
|
* src/_exit.cxx (_exit): Assert on non-zero error.
|
33 |
|
|
|
34 |
|
|
2001-10-09 Jonathan Larmour
|
35 |
|
|
|
36 |
|
|
* src/invokemain.cxx (cyg_libc_invoke_main): CYGINT_ISO_PTHREAD_IMPL
|
37 |
|
|
needs #ifdef not #if now.
|
38 |
|
|
|
39 |
|
|
2000-12-22 Jonathan Larmour
|
40 |
|
|
|
41 |
|
|
* cdl/startup.cdl: Allow others to say whether main() can be invoked
|
42 |
|
|
elsewhere.
|
43 |
|
|
Use defaults for startup context implementor using above interface
|
44 |
|
|
rather than POSIX pthread package.
|
45 |
|
|
Allow main() stack to be visible for other implementors, except
|
46 |
|
|
when called from the init context since the stack size isn't used
|
47 |
|
|
there, or when the implementation says it doesn't use it.
|
48 |
|
|
Define an interface to express that the stack size option
|
49 |
|
|
isn't used in such cases.
|
50 |
|
|
|
51 |
|
|
2000-10-12 Jonathan Larmour
|
52 |
|
|
|
53 |
|
|
* cdl/startup.cdl (CYGSEM_LIBC_INVOKE_DEFAULT_STATIC_CONSTRUCTORS):
|
54 |
|
|
Special case for POSIX package startup since we know it calls
|
55 |
|
|
cyg_libc_invoke_main() rather than main directly.
|
56 |
|
|
|
57 |
|
|
2000-08-07 Jonathan Larmour
|
58 |
|
|
|
59 |
|
|
* src/invokemain.cxx: Declare cyg_hal_stop_constructors
|
60 |
|
|
|
61 |
|
|
2000-07-31 Jonathan Larmour
|
62 |
|
|
|
63 |
|
|
* src/cstartup.cxx: Fix typo
|
64 |
|
|
|
65 |
|
|
2000-07-19 Jonathan Larmour
|
66 |
|
|
|
67 |
|
|
* cdl/startup.cdl:
|
68 |
|
|
Make a "radio button" choice between how main() gets invoked (eCos
|
69 |
|
|
thread vs. cyg_user_start vs. someone else doing it)
|
70 |
|
|
|
71 |
|
|
* src/mainthread.cxx: Move cyg_libc_dummy_constructor_class to
|
72 |
|
|
src/invokemain.cxx
|
73 |
|
|
|
74 |
|
|
* src/invokemain.cxx: Invoke pthread_exit() instead of exit() if
|
75 |
|
|
relevant
|
76 |
|
|
|
77 |
|
|
* src/cstartup.cxx:
|
78 |
|
|
Only fiddle with cyg_user_start() if
|
79 |
|
|
CYGSEM_LIBC_STARTUP_MAIN_INITCONTEXT defined
|
80 |
|
|
|
81 |
|
|
2000-07-04 Jonathan Larmour
|
82 |
|
|
|
83 |
|
|
* src/abort.cxx: Fix configuration dependency on CYGINT_ISO_SIGNAL_IMPL
|
84 |
|
|
|
85 |
|
|
2000-05-20 Jonathan Larmour
|
86 |
|
|
|
87 |
|
|
* cdl/startup.cdl (CYGSEM_LIBC_EXIT_STOPS_SYSTEM):
|
88 |
|
|
default to 0 always
|
89 |
|
|
|
90 |
|
|
2000-05-02 Jonathan Larmour
|
91 |
|
|
|
92 |
|
|
* New package
|
93 |
|
|
Separated original libc out into separate packages on functional
|
94 |
|
|
boundaries.
|
95 |
|
|
Header files are now managed by isoinfra package
|
96 |
|
|
Plenty of cleanups done, but no major functionality changes
|
97 |
|
|
|
98 |
|
|
//===========================================================================
|
99 |
|
|
// ####GPLCOPYRIGHTBEGIN####
|
100 |
|
|
// -------------------------------------------
|
101 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
102 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
103 |
|
|
//
|
104 |
|
|
// This program is free software; you can redistribute it and/or modify
|
105 |
|
|
// it under the terms of the GNU General Public License as published by
|
106 |
|
|
// the Free Software Foundation; either version 2 or (at your option) any
|
107 |
|
|
// later version.
|
108 |
|
|
//
|
109 |
|
|
// This program is distributed in the hope that it will be useful, but
|
110 |
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
111 |
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
112 |
|
|
// General Public License for more details.
|
113 |
|
|
//
|
114 |
|
|
// You should have received a copy of the GNU General Public License
|
115 |
|
|
// along with this program; if not, write to the
|
116 |
|
|
// Free Software Foundation, Inc., 51 Franklin Street,
|
117 |
|
|
// Fifth Floor, Boston, MA 02110-1301, USA.
|
118 |
|
|
// -------------------------------------------
|
119 |
|
|
// ####GPLCOPYRIGHTEND####
|
120 |
|
|
//===========================================================================
|