summaryrefslogtreecommitdiffstats
path: root/c/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* New shell of a test for ITRON Mailbox Manager.Joel Sherrill1999-11-177-1/+154
|
* Updated Mailbox Manager submitted and split into multiple files.Joel Sherrill1999-11-1711-344/+470
|
* Update from Andrew D. McDowell <amcdowel@cs.uah.edu> with modificationsJoel Sherrill1999-11-171-7/+257
| | | | | by Joel and Jennifer based on experience merging the other managers and cleaning them up. No test code is available at this point.
* Fixed screen.Joel Sherrill1999-11-161-1/+1
|
* Added TERMINAL_IDENTIFICATION pieces.Joel Sherrill1999-11-161-3/+4
|
* Fixed alignment problem on _endtext.Joel Sherrill1999-11-161-0/+1
|
* Moved task_variable pointer to basic shared part of TCB instead ofJoel Sherrill1999-11-165-38/+26
| | | | | | | RTEMS API extension to avoid problems when the extension is freed. Eventually the task variable switch extension should become part of the core context switch and the Ada tcb self implemented in terms of it.
* Added proper nesting level for dispatch disable check.Joel Sherrill1999-11-163-3/+3
|
* Added code so if dispatching level is specified to be -1, then noJoel Sherrill1999-11-161-1/+1
| | | | | check is performed. This is needed in some timer service routines since they are called from multiple disable levels.
* Corrected nesting level on dispatching verification.Joel Sherrill1999-11-161-1/+1
|
* Corrected disable dispatch nesting count checks.Joel Sherrill1999-11-161-7/+7
|
* Added check to return passed if task is not suspended.Jennifer Averett1999-11-162-1/+7
|
* Added code to catch the error of suspend count exceding the counter value.Jennifer Averett1999-11-161-0/+4
|
* Fixed bug.Jennifer Averett1999-11-162-6/+6
|
* Added handler for fsync. For the memfile it is the same as the data sync.Jennifer Averett1999-11-163-3/+3
|
* Fixed typo.Joel Sherrill1999-11-161-1/+1
|
* Inserted output from the erc32 run into the output file.Jennifer Averett1999-11-161-3/+71
|
* Use miniIMFS like hello from samples.Joel Sherrill1999-11-161-0/+2
|
* Increased stack space because message buffers are on the stack.Joel Sherrill1999-11-161-0/+1
|
* Removed leading space from output.Jennifer Averett1999-11-162-4/+4
|
* Added comment indicating that dup is known to be broken.Jennifer Averett1999-11-161-1/+1
|
* Added data to the log file so it matches the real output.Jennifer Averett1999-11-161-3/+61
|
* Added comment to log file indicating that task order is notJennifer Averett1999-11-161-1/+3
| | | | critical.
* Added test case of rsm_tsk and frsm_tsk on a task not suspended.Jennifer Averett1999-11-162-3/+14
| | | | This should result in nothing happening, but an E_OK result.
* Added BSP_MAXIMUM_OPERATION_COUNT and BSP_ITERATION_COUNTJoel Sherrill1999-11-161-2/+27
| | | | | | | | | which allow the BSP to override the default number of objects that will be created in the timing tests. This is useful for reducing memory consumption on small targets. The BSP_ITERATION_COUNT can be used to reduce the number of repititions in some of the tests. This is useful for extremely slow targets (we haven't seen any slow enough to justify modifying this one yet though. :)
* Added code to the macros which checked directive status to alsoJoel Sherrill1999-11-161-20/+44
| | | | | | | check that the _Thread_Dispatch_disable_level is set to the proper value (0 99% of the time). This automatic check significantly reduces the chance of mismatching disable/enable dispatch pairs while doing internal RTEMS work.
* Use the miniIMFS to reduce code space.Joel Sherrill1999-11-161-0/+2
|
* Added test cases for uname().Joel Sherrill1999-11-162-0/+25
|
* Web server uses the POSIX API. Therefor, it must be disabled when theJoel Sherrill1999-11-164-3/+26
| | | | POSIX API is disabled.
* Removed start subdirectory and distributed contents to the appropriateJoel Sherrill1999-11-163-10/+3
| | | | places under the libbsp tree.
* Added comments.Joel Sherrill1999-11-163-3/+10
|
* Now use _Thread_Reset().Joel Sherrill1999-11-161-19/+4
|
* Added threadreset.c.Joel Sherrill1999-11-161-1/+1
|
* Added prototype for _Thread_Reset() and numerous comments.Joel Sherrill1999-11-161-4/+28
|
* Only check for System V IPC if multiprocessing is enabled. The unixJoel Sherrill1999-11-163-2/+15
| | | | | | | | port only uses System V IPC for shared memory and semaphores to communicate between nodes in a multiprocessor configuration. If you disable multiprocessing, then this code should be unused. Thus systems like Cygwin which are POSIX but do not support System V IPC should not work.
* Fixed so can be included multiple times in the executive source.Joel Sherrill1999-11-161-0/+9
|
* Works now.Joel Sherrill1999-11-163-57/+36
| | | | | Removed times() since the version in the C Library support code is fine.
* Return a reasonable error other than ENOSYS.Joel Sherrill1999-11-161-1/+1
|
* Added call to _Watchdog_Remove to remove the sporadic timer. It wasJoel Sherrill1999-11-161-0/+1
| | | | being reinserted onto the ticks chain.
* Moved utsname from "build for now" (unimplemented files) to the mainJoel Sherrill1999-11-161-4/+5
| | | | list of C_PIECES since it is now implemented.
* Comment fixed when adding prototype forJoel Sherrill1999-11-161-2/+11
| | | | _ITRON_Message_buffer_Translate_core_message_buffer_return_code.
* New file.Joel Sherrill1999-11-161-0/+66
|
* Patch rtems-rc-19991105-1.diff.gz from Ralf CorsepiusJoel Sherrill1999-11-169-106/+23
| | | | | | | | | | | | | | | | | | | | | | | | <corsepiu@faw.uni-ulm.de> which does the following: This is the configuration cleanup patch: Main changes: * TARGET_ARCH removed * target.cfg.in moved to c/make/target.cfg.in (Only configured once for all BSPs of a target) * BARE_XXX variables appended to bsp.cfg.in * autogen renamed to bootstrap * removed stray variables from make/custom/*.cfg To apply: cd <source-tree> rm c/src/make/target.cfg.in cp autogen bootstrap mkdir c/make cp make/target.cfg.in c/make/target.cfg.in rm make/target.cfg.in rm autogen patch -p1 < rtems-rc-19991105-1.diff
* Modified file to match seen output.Jennifer Averett1999-11-161-92/+161
|
* Modified output file to match seen output. Added comment to all inoJennifer Averett1999-11-161-306/+282
| | | | values that they may change slightly on a processor basis.
* Removed compiler warning.Jennifer Averett1999-11-161-1/+1
|
* Changed asserts to tmmacros.Jennifer Averett1999-11-162-8/+7
|
* Updated scn file to match new output. Left out unemplementedJennifer Averett1999-11-161-17/+12
| | | | parts as a reminder to fix when these routines became implemented.
* + Changed ID to 1. ( Compilation error introduced by modifications. )Jennifer Averett1999-11-161-1/+1
|
* Modified scan file to match.Jennifer Averett1999-11-161-2/+2
|