source: rtems/cpukit/score/ChangeLog @ e99ff42

4.104.114.84.95
Last change on this file since e99ff42 was e99ff42, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/03 at 15:40:14

2003-06-12 Joel Sherrill <joel@…>

  • src/objectmp.c: Removed warnings.
  • Property mode set to 100644
File size: 19.8 KB
Line 
12003-06-12      Joel Sherrill <joel@OARcorp.com>
2
3        * src/objectmp.c: Removed warnings.
4
52003-03-18  Till Straumann <strauman@slac.stanford.edu>
6
7        PR 356/bsps
8        * src/threadhandlerc: This patch makes RTEMS/PowerPC eabi compliant.
9        Let Thread_Handler verify that _init/_main are non-NULL
10        before calling them (gives the linker script/user more
11        freedom to handle special cases).
12
132002-03-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
14
15        * include/rtems/system.h: Add __RTEMS_REVISION__.
16
172002-02-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
18
19        * include/rtems/system.h: Add __RTEMS_MAJOR__, __RTEMS_MINOR__.
20
212003-02-14      Joel Sherrill <joel@OARcorp.com>
22
23        AMD a29k declared obsolete.
24        * cpu/Makefile.am: Removed reference.
25        * cpu/a29k/.cvsignore, cpu/a29k/ChangeLog, cpu/a29k/Makefile.am,
26        cpu/a29k/amd.ah, cpu/a29k/asm.h, cpu/a29k/configure.ac,
27        cpu/a29k/cpu.c, cpu/a29k/cpu_asm.S, cpu/a29k/pswmacro.ah,
28        cpu/a29k/register.ah, cpu/a29k/sig.S, cpu/a29k/rtems/.cvsignore,
29        cpu/a29k/rtems/score/.cvsignore, cpu/a29k/rtems/score/a29k.h,
30        cpu/a29k/rtems/score/cpu.h, cpu/a29k/rtems/score/cpu_asm.h,
31        cpu/a29k/rtems/score/types.h: Removed.
32
332003-01-10      Joel Sherrill <joel@OARcorp.com>
34
35        * src/objectmp.c: Corrected use of name parameter to reflect that it
36        is actually the name not a pointer to the name.
37
382002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
39
40        Makefile.am: Don't create $ARCH.
41
422002-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
43
44        Makefile.am: Fix macro-file installation.
45
462002-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
47
48        Makefile.am: Move include/rtems/score/cpuopts.h to STD_H_FILES.
49
502002-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
51
52        * include/Makefile.am: Remove.
53        * inline/Makefile.am: Remove.
54        * macros/Makefile.am: Remove.
55        * src/Makefile.am: Remove.
56        * Makefile.am: Merge-in removed Makefile.ams.
57
582002-12-02      Joel Sherrill <joel@OARcorp.com>
59
60        * include/rtems/score/object.h, include/rtems/score/tod.h:
61        Added casts to eliminate warnings on 16 bit targets like the h8300.
62
632002-11-14      Joel Sherrill <joel@OARcorp.com>
64
65        * macros/rtems/score/object.inl: Keep consistent with inline version.
66
672002-10-31      Joel Sherrill <joel@OARcorp.com>
68
69        * src/heapgetinfo.c: Fixed comment.
70        * src/mpci.c: Removed warning.
71
722002-10-28      Joel Sherrill <joel@OARcorp.com>
73
74        * src/threadhandler.c: Prototype _init() and _main() if they are needed
75        to avoid a warning.
76
772002-08-14      Joel Sherrill <joel@OARcorp.com>
78
79        * macros/rtems/score/coremsg.inl: Add <string.h> to remove warning.
80        * src/threadidlebody.c: Add return 0 to avoid warning.
81
822002-08-07      Chris Johns <ccj@acm.org>
83
84        * src/coretodset.c: Correct calculation of ticks until next section
85        boundary.  It was incorrectly based upon current time not the
86        time that is being set.
87
882002-07-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
89
90        * src/Makefile.am: Build into libscore.a.
91
922002-07-22      Joel Sherrill <joel@OARcorp.com>
93
94        * include/rtems/score/apimutex.h (_API_Mutex_Lock): Per PR253
95        add the missing _ISR_Disable.  This fix was already applied to
96        the old location (c/src/exec/score/...).
97
982002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
99
100        * src/Makefile.am: Use .$(OBJEXT) instead of .o.
101
1022002-07-16      Joel Sherrill <joel@OARcorp.com>
103
104        * macros/rtems/score/object.inl: Corrected typos in
105        _Objects_Open, _Objects_Close, and _Objects_Namespace_remove.
106
1072002-07-05      Joel Sherrill <joel@OARcorp.com>
108
109        * macros/rtems/score/object.inl: Corrected implementation of
110        _Objects_Open, _Objects_Close, and _Objects_Namespace_remove
111        to be consistent with the inline implementation.
112
1132002-07-01    Joel Sherrill <joel@OARcorp.com>
114
115        * Mega patch merge to change the format of the object IDs to
116        loosen the dependency between the SCORE and the various APIs.
117        There was considerable work to simplify the object name management
118        and it appears that the name_table field is no longer needed.
119        This patch also includes the addition of the internal mutex
120        which is currently only used to protect some types of allocation
121        and deallocation.  This significantly can reduce context
122        switch latency under certain circumstances.  In particular,
123        some heap/region operations were O(n) and had dispatching
124        disabled.  This should help enormously.  With this merge,
125        the patch is not as clean as it should be.  In particular,
126        the documentation has not been modified to reflect the new object
127        ID layout, the IDs in the test screens are not updated, and
128        _Objects_Get_information needs to be a real routine not inlined.
129        As part of this patch a lot of MP code for thread/proxy blocking
130        was made conditional and cleaned up.
131        * include/Makefile.am, include/rtems/score/coremsg.h,
132        include/rtems/score/coremutex.h, include/rtems/score/coresem.h,
133        include/rtems/score/object.h, include/rtems/score/threadq.h,
134        inline/rtems/score/object.inl, inline/rtems/score/thread.inl,
135        macros/rtems/score/object.inl, src/Makefile.am, src/coremsg.c,
136        src/coremutex.c, src/coresem.c, src/mpci.c,
137        src/objectcomparenameraw.c, src/objectextendinformation.c,
138        src/objectinitializeinformation.c, src/objectnametoid.c,
139        src/thread.c, src/threadclose.c, src/threadget.c, src/threadq.c,
140        src/threadqextractwithproxy.c: Modified as part of above.
141        * include/rtems/score/apimutex.h, src/objectgetnoprotection.c: New
142        files.
143
1442001-05-17      Joel Sherrill <joel@OARcorp.com>
145
146        * macros/rtems/score/thread..inl: Implemented missing routines
147        for new libc reentrancy support.
148
1492002-05-15      Chris Johns <ccj@acm.org>
150
151        * include/rtems/score/thread.h, inline/rtems/score/thread.inl,
152        src/threaddispatch.c, src/threadinitialize.c:
153        Move the C library re-enterrant support directly into
154        the thread dispatch code. RTEMS needs libc and so requiring
155        libc to use a user extension with its overhead is not the best
156        solution. This patch lowers the overhead to 2 pointer moves.
157
1582002-05-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
159
160        * include/Makefile.am: Work-around to autoconf-2.53 adding PACKAGE_*
161        to autoheaders - sed out *PACKAGE* from cpuopts-tmp.h.
162
1632001-05-14      Till Straumann <strauman@slac.stanford.edu>
164
165        * src/threaddispatch.c, src/threadhandler.c: Per PR211 fix
166        saving/restoring floating point context.  The fpsave and fprestore
167        routines are only used in a executing context which _is_ fp and hence
168        has the FPU enabled. The current behavior required the FPU always to
169        be on which is very dangerous if lazy context switching is used. 
170        [Joel Note: Some ports explicitly enabled the FPU in the FP save and
171        restore routines to avoid this.]
172
173        The patch also makes sure (on powerpc only) that the FPU is disabled
174        for integer tasks. Note that this is crucial if deferred fp context
175        switching is used. Otherwise, fp context corruption may go undetected!
176        Also note that even tasks which merely push/pop FP registers to/from
177        the stack without modifying them still MUST be FP tasks - otherwise
178        (if lazy FP context switching is used), FP register corruption (of
179        other, FP, tasks may occur)!
180
181        Furthermore, (on PPC) by default, lazy FP context save/restore
182        is _disabled_.
183
1842001-04-26      Joel Sherrill <joel@OARcorp.com>
185
186        * src/objectcomparenamestring.c: Fix typos.
187 
1882001-04-26      Joel Sherrill <joel@OARcorp.com>
189
190        * include/rtems/score/object.h, inline/rtems/score/object.inl,
191        src/objectcomparenamestring.c: Address PR81 that
192        reworked POSIX message queues to add a descriptor separate from
193        the underlying message queue.  This allows non-blocking to follow
194        the "open" not the underlying queue.   As part of debugging this
195        it became clear that _Objects_Compare_name_string was broken
196        and a simple version using strncmp() was substituted.
197 
1982002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
199
200        * include/rtems/system.h: Remove targopts.h.
201
2022002-04-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
203
204        * include/rtems/system.h: Add the sparc to the target supporting
205        multlibs.
206
2072002-04-16      Chris Johns <ccj@acm.org>
208
209        * src/threadinitialize.c: Per PR181, clear the array of user extension
210        pointers. This lets user extensions that have hooked the switch handler
211        know if a task has been processed by the user extension before. If a
212        user extension is created after a task is started it may not know it.
213
2142002-04-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
215
216        * include/rtems/system.h: Add i386 to multilib-able targets.
217
2182001-04-11      Joel Sherrill <joel@OARcorp.com>
219
220       
221        * macros/rtems/score/userext.inl: Now works after merging patch for
222        functionality requested in PR174.
223        * inline/rtems/score/userext.inl: Added a comment explaining the
224        order in which routines appear since it is not the obvious order.
225 
2262002-04-08      Chris Johns <ccj@acm.org>
227
228        * Per PR141 and PR174, make task switch extension its own list and
229        fix all odd problems introduced by providing macro version.
230        * inline/rtems/score/userext.inl: Fix.
231
2322001-04-08      Joel Sherrill <joel@OARcorp.com>
233
234        * macros/rtems/score/object.inl: Corrected arguments.
235 
2362001-04-08      Joel Sherrill <joel@OARcorp.com>
237
238        * macros/rtems/score/userext.inl: Updated to reflect modifications
239        to inline version from PR142.
240        * inline/rtems/score/userext.inl: Cleanup as side-effect of above.
241 
2422002-04-08      Chris Johns <ccj@acm.org>
243
244        * Per PR142, make task switch extension its own list.
245        * include/rtems/score/userext.h: Reflect above by adding
246        User_extensions_Switch_control and adding it to User_extenions_Control.
247        * inline/rtems/score/userext.inl: Allocate all memory in one chunk
248        to minimize overhead.  Address processing dedicated switch chain.
249
2502002-04-08      Chris Johns <ccj@acm.org>
251
252        * Per PR142, make task switch extension its own list.
253        * include/rtems/score/userext.h: Reflect above by adding
254        User_extensions_Switch_control and adding it to User_extenions_Control.
255        * inline/rtems/score/userext.inl: Allocate all memory in one chunk
256        to minimize overhead.  Address processing dedicated switch chain.
257
2582002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
259
260        * cpu/Makefile.am: Remove AUTOMAKE_OPTIONS.
261        * src/Makefile.am: Remove AUTOMAKE_OPTIONS.
262        * Makefile.am: Remove AUTOMAKE_OPTIONS.
263        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
264        * inline/Makefile.am: Remove AUTOMAKE_OPTIONS.
265        * macros/Makefile.am: Remove AUTOMAKE_OPTIONS.
266
2672002-01-29      Joel Sherrill <joel@OARcorp.com>
268
269        * include/rtems/score/watchdog.h: Added WATCHDOG_MAXIMUM_INTERVAL.
270
2712002-01-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
272
273        * include/rtems/system.h: Fix typo in yesterday's change:
274        RTEMS_MULTILIBS.
275
2762001-01-18      Joel Sherrill <joel@OARcorp.com>
277
278        * include/rtems/system.h: Only include cpuopts.h when building a
279        multilib configuration.  Some ports still need targopts.h but this
280        small modification lets those ports work non-multilib while
281        fixing being fixed for multilib.
282       
2832002-01-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
284
285        * include/rtems/seterr.h: Add do {..} while (0) in defines.
286        Rename set_errno_and_return_minus_one into
287        rtems_set_errno_and_return_minus_one.
288
2892001-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
290
291        * inline/rtems/score/object.inl, macros/rtems/score/object.inl: Add
292        add casts to Objects_Id in _Objects_Build_ids to avoid implicit
293        typecasts from enum to int16 on bit16 targets (here: h8300).
294
2952001-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
296
297        * src/Makefile.am: Add multilib support.
298
2992001-11-28      Joel Sherrill <joel@OARcorp.com>,
300
301        This was tracked as PR91.
302        * include/rtems/score/isr.h, inline/rtems/score/isr.inl,
303        macros/rtems/score/isr.inl: Modified to allow any port to provide
304        its own implementation of the macro _ISR_Is_in_progress.  If the
305        port overrides this macro, it must provide a non-inlined function
306        implementation.
307
3082001-11-20      Joel Sherrill <joel@OARcorp.com>
309
310        * src/threadhandler.c: When __USE__MAIN__ is defined by the toolset,
311        invoke the global constructors via __main.  Reported as tested by
312        Alexandra Kossovsky <sasha@oktet.ru> and  Victor V. Vengerov
313        <vvv@oktet.ru> in conjunction with a new set of tool RPMs
314        (gcc2.95.3newlib1.9.0-3).  This was tracked as GNATS PR tools/84.
315
3162001-11-07      Joel Sherrill <joel@OARcorp.com>
317
318        Reported by Todor.Todorov@barco.com and tracked as PR36.
319        * include/rtems/score/object.h: Added prototype for
320        _Objects_Get_by_index().
321        * src/objectget.c, src/objectgetisr.c: Corrected procedure for
322        getting index from Id so it is correct and optimal for both single
323        and multiprocessor configurations.
324
3252001-10-22      Joel Sherrill <joel@OARcorp.com>
326
327        * src/threadhandler.c: Use __USE_INIT_FINI__ since USE_INIT_FINI
328        pollutes the application namespace.
329
3302001-10-16      Joel Sherrill <joel@OARcorp.com>
331
332        * .cvsignore: Add stamp-h.in.
333
3342001-10-16      Joel Sherrill <joel@OARcorp.com>
335
336        * include/Makefile.am: Fixed path to cpuopts-tmp.h.
337
3382001-10-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
339
340        * include/rtems/Makefile.am: Remove.
341        * include/rtems/Makefile.am: Remove.
342        * include/Makefile.am: Handle subdirs, require automake-1.5.
343        * macros/rtems/Makefile.am: Remove.
344        * macros/rtems/score/Makefile.am: Remove.
345        * macros/Makefile.am: Handle subdirs, require automake-1.5.
346        * inline/rtems/Makefile.am: Remove.
347        * inline/rtems/score/Makefile.am: Remove.
348        * inline/Makefile.am: Handle subdirs, require automake-1.5.
349        * Makefile.am: require automake-1.5
350
3512001-09-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * include/rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
354        * include/rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
355        * inline/rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
356        * macros/rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
357
3582001-09-27      Eric Norum <eric.norum@usask.ca>
359
360        * src/threadhandler.c: Now process C++ global constructors
361        (_init) as part of the first task execution not in BSP space.
362        This depends on the toolset defining USE_INIT_FINI so you
363        have to have the right toolset version.
364
3652001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
366
367        * include/rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
368        * include/rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
369        * inline/rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
370        * macros/rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
371
3722001-08-30      Joel Sherrill <joel@OARcorp.com>
373
374        *  src/coremutex.c, src/coremutexseize.c, src/coremutexsurrender.c,
375        inline/rtems/score/coremutex.inl: The per thread field resource_count
376        should only be manipulated when a mutex is priority ceiling or
377        priority inherit.  This was reported by Chris Johns <ccj@acm.org>
378        who also noticed that the use of switches for all disciplines
379        generated less efficient code than using explicit tests for the one
380        or two cases we were really interested in.  Further review of his
381        modifications made it apparent that the "isa" methods to test mutex
382        discipline were not being used so this modification was swept into
383        the code as well.
384
3852001-08-30      Joel Sherrill <joel@OARcorp.com>
386
387        * src/coremutexseize.c: Add missing code for proper handling
388        of nesting acquisitions.  This only impacts building with
389        inlines disabled on the source with the "fast mutex" optimizations.
390        This was post the 4.5 branch and did not impact released versions.
391
3922001-08-16      Joel Sherrill <joel@OARcorp.com>
393
394        * src/coremutexsurrender.c: Use holder thread not executing
395        thread because even though they may and often are the same
396        it is not guaranteed unless the proper attribute is set.
397
3982001-08-16      Joel Sherrill <joel@OARcorp.com>
399
400        * include/rtems/score/coremsg.h, src/coremsgsubmit.c: Add a new
401        return status to account for blocking sends.  Otherwise, the
402        caller will think that the returned message status will have
403        the ultimate results of the operation.  If the send times out,
404        the final status will be in the return_code of the thread.
405
4062001-08-09      Joel Sherrill <joel@OARcorp.com>
407
408        * include/rtems/score/coremsg.h, inline/rtems/score/coremsg.inl,
409        src/coremsgsubmit.c: Unblocking message queue operations should
410        NOT use _Thread_Executing for return status since it is permissible
411        to invoke message send operations from an ISR.  This was reported
412        by Suvrat Gupta <suvrat@utstar.com>.
413
4142000-05-25      Sergei Organov <osv@javad.ru>
415
416        * macros/rtems/score/coresem.inl, inline/rtems/score/coresem.inl:
417        Cut and paste problem incorrectly enabled interrupts twice with
418        the first time being too early.
419
4202001-05-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
421
422        * include/rtems/score/.cvsignore: Add stamp-h, cpuopts.h,
423        cpuopts.h.in, cpuopts-tmp.h.
424
4252001-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
426
427        * include/rtems/Makefile.am, include/rtems/score/Makefile.am,
428        inline/rtems/score/Makefile.am, macros/rtems/score/Makefile.am
429        Apply include_*HEADERS instead of H_FILES.
430
4312001-01-29      Joel Sherrill <joel@OARcorp.com>
432
433        * src/objectextendinformation.c: Added include of string.h to
434        eliminate warning.
435
4362001-01-08      Joel Sherrill <joel@OARcorp.com>
437
438        * src/threadinitialize.c: Fix my bad hack of Ralf's fp_area
439        warning removal patch. :(
440
4412001-01-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
442
443        * src/threadinitialize.c: Removed warning.
444
4452001-01-03      Joel Sherrill <joel@OARcorp.com>
446
447        * src/isr.c: Modify to properly dereference _ISR_Vector_table
448        now that it is dynamically allocated.
449
4502000-12-19      Joel Sherrill <joel@OARcorp.com>
451
452        * src/isr.c: Allocate the _ISR_Vector_table all the time not just when
453        we are allocating an interrupt stack.
454
4552000-12-13      Joel Sherrill <joel@OARcorp.com>
456
457        * include/rtems/score/isr.h, src/isr.c: Allocate it from the
458        workspace rather than explicitly declaring it.  This allows
459        the size to be a non-constant from the perspective of score/cpu.
460
4612000-12-01      Joel Sherrill <joel@OARcorp.com>
462
463        * macros/rtems/score/coresem.inl: Removed comments since convention
464        calls for comments to be in inline versin.
465        * macros/rtems/score/object.inl (Objects_Get_local_object): Fixed
466        style to use _ prefix on variable names and use parentheses.
467        * macros/rtems/score/object.inl (_Objects_Namespace_remove): Added.
468
4692000-11-30      Joel Sherrill <joel@OARcorp.com>
470
471        * General effort to make things compile with macros not inlines
472        * inline/rtems/score/coremutex.inl: Added comment indicating
473        for macros there is another copy of
474        _CORE_mutex_Seize_interrupt_trylock() in src/coremutexseize.c.
475        * src/coremutexseize.c: Added body of
476        _CORE_mutex_Seize_interrupt_trylock() for macro case.
477        * macros/rtems/score/coremutex.inl: Added prototype for
478        _CORE_mutex_Seize_interrupt_trylock() since there is a real
479        body when macros are enabled.
480        * macros/rtems/score/coresem.inl: Added macro implementation of
481        _CORE_semaphore_Seize_isr_disable.
482        * macros/score/Makefile.am: Fixed typos.
483        * rtems/score/address.inl: Correct macro implementation of
484        _Addresses_Is_aligned() so it would compile.
485        * macros/rtems/score/coremsg.inl: Added closing parentheses.
486       
4872000-11-28      Chris Johns <ccj@acm.org>
488
489        * src/heapallocate.c: Do not allow the size to overflow when
490        adjusting it.  A test allocated a stack of -1 (~0). This
491        actually resulted in a stack being allocated but with a
492        size of 0xb. The allocator did not test the size to see if
493        it rolled through 0 and so allowed the allocation to happen, the
494        thread to get created. The task crashed as you would expect.
495
4962000-11-02      Joel Sherrill <joel@OARcorp.com>
497
498        * include/rtems/system.h: Use proper conditional (RTEMS_POSIX_API)
499        so prototypes for POSIX_MP_NOT_IMPLEMENTED(), POSIX_NOT_IMPLEMENTED(),
500        POSIX_BOTTOM_REACHED() are actually included.
501
5022000-11-02      Joel Sherrill <joel@OARcorp.com>
503
504        * include/rtems/system.h: Add prototypes for POSIX_MP_NOT_IMPLEMENTED(),
505        POSIX_NOT_IMPLEMENTED(), POSIX_BOTTOM_REACHED() removed from newlib.
506
5072000-10-18      Nick Simon <Nick.SIMON@syntegra.bt.co.uk>
508
509        * src/heapgetinfo.c, include/rtems/score/heap.h, src/Makefile.am:
510        Added _Heap_Get_information() and information control block.
511        * src/heapgetinfo.c: New file.
512
5132000-09-25      Joel Sherrill <joel@OARcorp.com>
514
515        * rtems/system.h: Switched a29k and hppa1.1 to using cpuopts.h not
516        targopts.h to reduce dependency on BSP.
517
5182000-09-20      Joel Sherrill <joel@OARcorp.com>
519
520        * src/objectgetbyindex.c: Do not enable dispatching on an
521        error path it was not disabled on.
522
5232000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
524
525        * src/Makefile.am: Include compile.am.
526
5272000-08-30      Joel Sherrill <joel@OARcorp.com>
528
529        * Many files: Moved posix/include/rtems/posix/seterr.h to
530        score/include/rtems/seterr.h so it would be available within
531        all APIs.
532
5332000-08-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
534
535        * include/rtems/system.h: Include cpuopts.h for __i386__.
536
5372000-08-10      Joel Sherrill <joel@OARcorp.com>
538
539        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.