* 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.
* binutils/binutils.add: Add initial support for building
Canadian cross RPMs. It should work like this:
cd rtems/scripts
./configure --build=`../config.guess` --host=i386-cygwin
make install
rpm --target=i386-cygwin \
/usr/src/redhat/SPECS/<target>-binutils-..spec.
alien -t /usr/src/redhat/RPMS/....i386.rpm
.. and voila ... your tarball, with rpm-consistency checks etc. applied.
* buildalltar.in: Modified to support Canadian cross builds.
It was testing using a RedHat 7.2 host to build *-rtems tools
that run on an i386-cygwin host.
* configure.ac: Add --enable-docs support. Add
RTEMS_HOST_CONFIG_SUBDIRS(doc). Remove doc/Makefile.
* Makefile.am: Add HOST_SUBDIRS to SUBDIRS. Remove doc from
hard-coded SUBDIRS.
* README.configure: Added a bit of information on this new option.
* include/rtems/system.h: Only include cpuopts.h when building a
multilib configuration. Some ports still need targopts.h but this
small modification lets those ports work non-multilib while
fixing being fixed for multilib.
* include/rtems/system.h: Only include cpuopts.h when building a
multilib configuration. Some ports still need targopts.h but this
small modification lets those ports work non-multilib while
fixing being fixed for multilib.
* src/powerpc/excep_f.c: This patch addresses the following issues:
- exception handler needs to enable MSR_FP if the interrupted
thread is FP enabled.
- printk message for MSR fixed and added stacktrace
NOTE: this requires the stacktrace patch to
lib/libbsp/powerpc/shared/vectors/vector_init.c
(#ifdef DDEBUG only, however)
* src/powerpc/new_exception_processing/remdeb.h,
src/powerpc/new_exception_processing/remdeb_xdr.c: Regenerated since
I updated the main RTEMS development machine to RedHat 7.2 and
apparently got a new version of rpcgen.
* timer.t: Added task-based timer information including the
new directives rtems_timer_initiate(), rtems_timer_server_fire_after(),
and rtems_timer_server_fire_when().
* SUPPORT, LICENSE: New files.
* Numerous files touched as part of merging the 4.5 branch
onto the mainline development trunk and ensuring that the
script that cuts snapshots and releases works on the documentation.
* Added task-based timers to the Timer Manager. This added three
new directives:
- rtems_timer_initiate_server
- rtems_timer_server_fire_after
- rtems_timer_server_fire_when
In the process of doing this, a number of cleanups were made.
* src/timerserver.c, src/timerserverfireafter.c,
src/timerserverfirewhen.c: New files.
* include/timer/timer.h: Added new prototypes and supporting types.
* inline/rtems/rtems/timer.h, macros/rtems/rtems/timer.h: Enhanced
_Timer_Is_interval_class() to cover the class TIMER_INTERVAL_ON_TASK.
* src/Makefile.am: Accounted for new files.
* src/rtemstimer.c: Added initialization of _Timer_Server variable.
* src/timercancel.c, src/timerreset.c: Account for addition
of timer classes. Also corrected the headers.
* src/timercreate.c, src/timerdelete.c, src/timerfireafter.c,
src/timerfireafter.c, src/timerident.c: Corrected header.