source: rtems/c/src/exec/rtems/ChangeLog @ 422289e

4.104.114.84.95
Last change on this file since 422289e was 422289e, checked in by Joel Sherrill <joel.sherrill@…>, on 01/29/02 at 18:18:14

2001-01-29 Joel Sherrill <joel@…>

  • Fixed bug where resetting a timer that was not at the head of one of the task timer chains resulted in the Timer Server task waking up too far in the future.
  • Added rtems_timer_get_information() directive to support testing.
  • src/timerserver.c, include/rtems/rtems/timer.h,
  • src/timergetinfo.c: New file.
  • src/Makefile.am: Modified to reflect above.
  • Property mode set to 100644
File size: 6.2 KB
Line 
12001-01-29      Joel Sherrill <joel@OARcorp.com>
2
3        * Fixed bug where resetting a timer that was not at the head
4        of one of the task timer chains resulted in the Timer Server
5        task waking up too far in the future.
6        * Added rtems_timer_get_information() directive to support testing.
7        * src/timerserver.c, include/rtems/rtems/timer.h,
8        * src/timergetinfo.c: New file.
9        * src/Makefile.am: Modified to reflect above.
10
112001-01-22      Joel Sherrill <joel@OARcorp.com>
12
13        * include/rtems/rtems/timer.h, src/timerserver.c: Add priority
14        argument to rtems_timer_initiate_server().
15
162001-01-18      Joel Sherrill <joel@OARcorp.com>
17
18        * include/rtems/system.h: Only include cpuopts.h when building a
19        multilib configuration.  Some ports still need targopts.h but this
20        small modification lets those ports work non-multilib while
21        fixing being fixed for multilib.
22       
232001-01-16      Joel Sherrill <joel@OARcorp.com>
24
25        * Added task-based timers to the Timer Manager.  This added three
26        new directives:
27            - rtems_timer_initiate_server
28            - rtems_timer_server_fire_after
29            - rtems_timer_server_fire_when
30        In the process of doing this, a number of cleanups were made.
31        * src/timerserver.c, src/timerserverfireafter.c,
32        src/timerserverfirewhen.c: New files.
33        * include/timer/timer.h: Added new prototypes and supporting types.
34        * inline/rtems/rtems/timer.h, macros/rtems/rtems/timer.h: Enhanced
35        _Timer_Is_interval_class() to cover the class TIMER_INTERVAL_ON_TASK.
36        * src/Makefile.am: Accounted for new files.
37        * src/rtemstimer.c: Added initialization of _Timer_Server variable.
38        * src/timercancel.c, src/timerreset.c: Account for addition
39        of timer classes.  Also corrected the headers.
40        * src/timercreate.c, src/timerdelete.c, src/timerfireafter.c,
41        src/timerfireafter.c, src/timerident.c: Corrected header.
42
432001-01-16      Joel Sherrill <joel@OARcorp.com>
44
45        * src/taskmode.c: Ensure the this service does not dispatch before
46        tasking is enabled at initialization time.
47
482002-01-07      Joel Sherrill <joel@OARcorp.com>
49
50        * optman/, optman/.cvsignore, optman/Makefile.am, optman/no-dpmem.c,
51        optman/no-event.c, optman/no-mp.c, optman/no-msg.c, optman/no-part.c,
52        optman/no-region.c, optman/no-rtmon.c, optman/no-sem.c,
53        optman/no-signal.c, optman/no-timer.c: Removed entire contents of
54        optman/ directory since it has been moved.
55
562001-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
57
58        * src/Makefile.am: Add multilib support.
59        * optman/Makefile.am: Add multilib support.
60
612001-10-23      Joel Sherrill <joel@OARcorp.com>
62
63        * macros/rtems/rtems/asr.nil: Fixed typo.
64
652001-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
66
67        * macros/Makefile.am: Replace INLINES w/ MACROS (Fix stupid typo in
68        previous patch).
69
702001-10-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
71
72        * include/rtems/Makefile.am: Remove.
73        * include/rtems/rtems/Makefile.am: Remove.
74        * include/Makefile.am: Handle subdirs, require automake-1.5.
75        * inline/rtems/Makefile.am: Remove.
76        * inline/rtems/rtems/Makefile.am: Remove.
77        * inline/Makefile.am: Handle subdirs, require automake-1.5.
78        * macros/rtems/Makefile.am: Remove.
79        * macros/rtems/rtems/Makefile.am: Remove.
80        * macros: Handle subdirs, require automake-1.5.
81        * Makefile.am: require automake-1.5.
82
832001-09-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
84
85        * include/rtems/rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
86        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
87        * inline/rtems/rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
88        * macros/rtems/rtems/Makefile.am: Use 'PREINSTALL_FILES ='.
89
902001-09-14      Fernando Ruiz <fernando.ruiz@ctv.es>
91
92        * src/tasks.c: Dereference pointer passed to destructor.
93
942001-08-30      Joel Sherrill <joel@OARcorp.com>
95
96        * inline/rtems/rtems/attr.inl: Correct typo and use correct
97        attribute RTEMS_SYSTEM_TASK. Reported by Chris Johns <ccj@acm.org>.
98
992001-08-16      Joel Sherrill <joel@OARcorp.com>
100
101        * src/msgqsubmit.c: Add a comment indicating that we do not have
102        to account for possibly blocking during the core send operation
103        because Classic API message queue send is always non-blocking.
104
1052001-08-09      Joel Sherrill <joel@OARcorp.com>
106
107        * src/msgqsubmit.c: Unblocking message queue operations should
108        NOT use _Thread_Executing for return status since it is permissible
109        to invoke message send operations from an ISR.  This was reported
110        by Suvrat Gupta <suvrat@utstar.com>.
111
1122001-03-26      Zoltan Kocsi <zoltan@bendor.com.au>
113
114
115        * src/eventsurrender.c: Clear event condition when task is unblocked.
116        This makes sure that subsequent event send thinks the task is still
117        blocked and overwrites the initial events received.
118
1192001-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
120
121        * include/Makefile.am, include/rtems/rtems/Makefile.am,
122        inline/rtems/rtems/Makefile.am, macros/rtems/rtems/Makefile.am,
123        rtems/optman/Makefile.am:
124        Apply include_*HEADERS instead of H_FILES.
125
1262001-01-22      Michael Hamel <mhamel@adi.co.nz>
127
128        * include/rtems.h, src/signalcatch.c: Modifications to make
129        CodeWarrior happy.
130
1312000-12-06      Joel Sherrill <joel@OARcorp.com>
132
133        * src/regiongetinfo.c: Removed unused variable to eliminate warning.
134
1352000-11-30      Joel Sherrill <joel@OARcorp.com>
136
137        * src/msgqsubmit.c: Modified multiprocessing conditional so
138        this would compile with both macros and inlines.
139
1402000-11-30      Joel Sherrill <joel@OARcorp.com>
141
142        * macros/rtems/rtems/sem.inl: Added macro implementation of
143        _Semaphore_Get_interrupt_disable().
144
1452000-10-18      Joel Sherrill <joel@OARcorp.com>
146
147        * src/regiongetinfo.c, include/rtems/rtems/region.h,
148        include/rtems/rtems/types.h, src/Makefile.am: Added
149        region_get_information() and information control block.
150        * src/regiongetinfo.c: New file.
151
1522000-09-29      Stephan Merker <merker@decrc.abb.de>
153
154        * include/rtems/rtems/ratemon.h, src/ratemonperiod.c,
155        src/ratemontimeout.c: Add next_length field so period length
156        can be changed by the the sequence period(X), period(not X)
157        with no intervening cancel or expiration.
158
1592000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
160
161        * optman/Makefile.am, src/Makefile.am: Include compile.am.
162
1632000-08-30      Joel Sherrill <joel.sherrill@OARcorp.com>
164
165        * taskstart.c: Removed 1st cut at rtems_task_start_main_style.
166        Only committed this so it could be easily revisited as we
167        discussing moving main() to user space from BSP space.
168
1692000-08-30      Joel Sherrill <joel.sherrill@OARcorp.com>
170
171        * taskstart.c: Added 1st cut at rtems_task_start_main_style.
172
1732000-08-10      Joel Sherrill <joel@OARcorp.com>
174
175        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.