summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems (unfollow)
Commit message (Collapse)AuthorFilesLines
1999-11-12Added per task variables based on patch from Eric Norum <eric@cls.usask.ca>.Joel Sherrill3-3/+222
After being submitted, this support was rewritten to be inside the executive rather than layered on top of it using an extension.
1999-11-10Added call to _Thread_Enable_dispatch() and did some cleanup.Joel Sherrill1-2/+9
1999-11-10Committed modifications from ITRON Task and Task Dependendent SynchronizationJoel Sherrill2-2/+2
Working Group. Included are tests.
1999-11-09Removed unused variable warning.Joel Sherrill1-1/+0
1999-11-04The files in libcpu should not be directly dependent on any BSP. InJoel Sherrill1-1/+0
particular, using bsp.h, or getting information from the BSP which should properly be obtained from RTEMS is forbidden. This is necessary to strengthen the division between the BSP independent parts of RTEMS and the BSPs themselves. This started after comments and analysis by Ralf Corsepius <corsepiu@faw.uni-ulm.de>. The changes primarily eliminated the need to include bsp.h and peeking at BSP_Configuration. The use of Cpu_table in each BSP needs to be eliminated.
1999-11-02Split Heap and Time of Day Handlers.Joel Sherrill2-0/+129
1999-11-02Added comment to make sure Classic API priority to Core priorityJoel Sherrill1-0/+1
is added in the future.
1999-11-02Added comments for _RTEMS_tasks_Create_extension,Joel Sherrill1-4/+9
_RTEMS_tasks_Start_extension, _RTEMS_tasks_Delete_extension, and _RTEMS_tasks_Switch_extension.
1999-11-02Added a case to support the core semaphore error returned when theJoel Sherrill1-0/+8
maximum semaphore count is exceeded.
1999-11-02Added code to utilize the maximum_count attribute of core semaphoresJoel Sherrill1-0/+7
and initialize it to a value that would keep it from every being a problem.
1999-10-21Removed warning.Joel Sherrill1-0/+2
1999-10-21Added rtems_semaphore_flush directive.Joel Sherrill2-0/+104
1999-10-20Added prototype for rtems_task_is_suspended at request ofJoel Sherrill1-1/+12
Eric Norum.
1999-10-07New directive added -- rtems_task_is_suspended.Joel Sherrill1-0/+76
1999-10-04Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to make fix bugJoel Sherrill4-12/+12
where wrapup left pieces out of the librtemsall.a.
1999-09-07Applied patch rtems-rc-19990820-6.diff.gz fromJoel Sherrill4-0/+57
Ralf Corsepius <corsepiu@faw.uni-ulm.de> which converted many Makefile.in's to Makefile.am's. This added a lot of files.
1999-08-30Removed definition of NO_IMPLICIT_EXTERN_C since it is supposed to beJoel Sherrill1-2/+0
in the compiler not in the header file.
1999-08-10Added NO_IMPLICIT_EXTERN_C at suggestion of Jason Merrill.Joel Sherrill1-0/+2
1999-06-09Modified to return an error when a bogus return address for theJoel Sherrill1-0/+3
old_priority parameter is provided.
1999-05-27Corrected macro names.Joel Sherrill1-2/+6
1999-05-17Fixed some typos.Joel Sherrill1-4/+4
1999-05-17Split Interrupt Manager into one routine per file.Joel Sherrill2-36/+55
1999-05-17Split Signal Manager into one routine per file.Joel Sherrill3-108/+154
1999-05-17Dual-Ported Memory Manager split into one routine per file.Joel Sherrill6-236/+346
1999-05-17Split Partition Manager into one routine per file.Joel Sherrill6-299/+414
1999-05-17Split Timer Manager into one routine per file.Joel Sherrill8-308/+469
1999-05-17Split Event Manager into one routine per file.Joel Sherrill6-342/+456
1999-05-17Split Rate Monotonic Manager into one routine per file.Joel Sherrill8-416/+568
1999-05-17Split the Semaphore Manager into one routine per file.Joel Sherrill7-484/+766
1999-05-17Moved some MP routines to semmp.c.Joel Sherrill2-55/+54
1999-05-17Forgot to actually remove the routines. :)Joel Sherrill1-748/+0
1999-05-17Split Message Manager into one routine per file.Joel Sherrill12-0/+1105
1999-05-17Moved an MP routine from msg.c to here.Joel Sherrill1-0/+26
1999-05-17Cleaned up some multiprocessing issues.Joel Sherrill1-17/+15
1999-05-17Split Clock Manager into one routine per file.Joel Sherrill4-129/+194
1999-05-17Split Region Manager into one routine per file.Joel Sherrill8-455/+618
1999-05-17Split Task Manager into multiple files. Eventually this effort willJoel Sherrill15-961/+1381
reduce the size of executables.
1999-05-17Patch from D. V. Henkel-Wallace <gumby@zembu.com>:Joel Sherrill1-0/+16
Here's a tiny patch that shreds memory returned to the pool (such as by free() and delete). This may help people find some nasty bugs, so here it is.
1999-05-07Made all calls to _Thread_Yield_processor consistent in how they areJoel Sherrill1-7/+6
wrapped by calls to _Thread_Enable_dispatch and _Thread_Disable_dispatch.
1999-03-17Unlimited objects patch from Chris Johns <ccj@acm.org>. Email follows:Joel Sherrill1-15/+17
First, the unlimited patch. I have compiled the unlmited patch for the Linux posix BSP only and it seems to work cleanly. I would like a really major application run on this change before commiting as the changes are very core and significant. I am currently building all the tests to run. I have no targets suitable to test on at the moment. I have tested the patch for inline functions and macros. Turning macros on has found some core bugs. I have fixed these but have not run all the tests. Please review the patch for these changes. They are: 1) The conditional compilation for MP support broke the core messages code. You cannot embed a conditional macro in another macro. The Send and Urgent Send calls are macros. 2) User extensions handler initialisation now has two parameters. I have updated the macros to support the extra parameter. The patch also contains the gcc-target-default.cfg fix required to build the kernel. More of a by product than a fix for you.
1999-02-10Comments fixed after problem report from Ian Lance Taylor <ian@airs.com>.Joel Sherrill1-19/+10
1998-12-03Corrected ifdef on RTEMS_MULTIPROCESSING so the queue is actually closed.Joel Sherrill1-2/+4
1998-11-23Added --disable-multiprocessing flag and modified a lot of files to makeJoel Sherrill21-103/+367
it work.
1998-08-24Added __RTEMS_INSIDE__ macro to insure that ".inl" files are ALWAYS includedJoel Sherrill1-1/+1
when building the executive source.
1998-08-21Added system task attribute to allow one to create a task with "0" priorityJoel Sherrill4-9/+40
via the user api.
1998-06-18All task delete API level services were incorrectly assuming that theJoel Sherrill1-1/+10
task to be deleted was created via the same API (i.e. were of the object class created by this API). For example, a POSIX thread calling the rtems_task_delete(SELF) directive would incorrectly update the RTEMS object local pointer table. Jennifer discovered this when moving tests implemented in C using the Classic RTEMS API into a tree of Ada tests. The Ada tests were implicitly using POSIX services. This lead to some unexpected behavior.
1998-02-17updated copyright to 1998Joel Sherrill85-85/+85
1997-10-21Added check that return argument pointer for old_isr_handler was valid.Joel Sherrill1-0/+3
1997-10-08Fixed typo in the pointer to the license terms.Joel Sherrill85-170/+170
1997-10-06Make Post an atomic operation.Joel Sherrill2-2/+12