summaryrefslogtreecommitdiffstats
path: root/c/src/exec/sapi (follow)
Commit message (Collapse)AuthorAgeFilesLines
* changed version to 19990210Joel Sherrill1999-02-101-1/+1
|
* POSIX Timers submitted by Juan Zamorano FloresJoel Sherrill1999-02-032-0/+12
| | | | <jzamora@avellano.datsi.fi.upm.es>.
* changed version to 19981217Joel Sherrill1998-12-171-1/+1
|
* Automake reorgnization.Joel Sherrill1998-12-172-0/+28
|
* changed version to 19981215Joel Sherrill1998-12-161-1/+1
|
* More automake preparation changes from Ralf CorsepiusJoel Sherrill1998-12-154-7/+46
| | | | <corsepiu@faw.uni-ulm.de>.
* Moved around per Ralf Corsepius as preparation for automakeJoel Sherrill1998-12-1515-2014/+0
|
* changed version to 19981203Joel Sherrill1998-12-042-2/+2
|
* Moved stackchk.h to rtems subdirectory.Joel Sherrill1998-12-032-2/+2
|
* Added base version of file system infrastructure. This includes a majorJoel Sherrill1998-11-231-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | overhaul of the RTEMS system call interface. This base file system is the "In-Memory File System" aka IMFS. The design and implementation was done by the following people: + Joel Sherrill (joel@OARcorp.com) + Jennifer Averett (jennifer@OARcorp.com) + Steve "Mr Mount" Salitasc (salitasc@OARcorp.com) + Kerwin Wade (wade@OARcorp.com) PROBLEMS ======== + It is VERY likely that merging this will break the UNIX port. This can/will be fixed. + There is likely some reentrancy/mutual exclusion needed. + Eventually, there should be a "mini-IMFS" description table to eliminate links, symlinks, etc to save memory. All you need to have "classic RTEMS" functionality is technically directories and device IO. All the rest could be left out to save memory.
* Added --disable-multiprocessing flag and modified a lot of files to makeJoel Sherrill1998-11-236-0/+43
| | | | it work.
* changed version to 4.0.0-AFCCJoel Sherrill1998-10-292-2/+2
|
* changed version to 4.0.0Joel Sherrill1998-10-272-2/+2
|
* changed version to 4.0.0-beta4bJoel Sherrill1998-10-262-2/+2
|
* changed version to 4.0.0-beta4aJoel Sherrill1998-10-152-2/+2
|
* changed version to 4.0.0-beta4Joel Sherrill1998-10-122-2/+2
|
* changed version to 981006Joel Sherrill1998-10-062-2/+2
|
* changed version to 981001Joel Sherrill1998-10-012-2/+2
|
* changed version to 980923Joel Sherrill1998-09-232-2/+2
|
* changed version to 980921Joel Sherrill1998-09-212-2/+2
|
* changed version to 980911Joel Sherrill1998-09-112-2/+2
|
* changed version to 980824Joel Sherrill1998-08-242-2/+2
|
* Added __RTEMS_INSIDE__ macro to insure that ".inl" files are ALWAYS includedJoel Sherrill1998-08-241-1/+1
| | | | when building the executive source.
* changed version to 980821Joel Sherrill1998-08-212-2/+2
|
* Modified version number to recut snapshot.Joel Sherrill1998-08-212-2/+2
|
* changed version to 980821Joel Sherrill1998-08-212-2/+2
|
* changed version to 980820pm-BSDJoel Sherrill1998-08-202-2/+2
|
* changed version to 980820-BSDJoel Sherrill1998-08-202-2/+2
|
* changed version to 980819Joel Sherrill1998-08-192-2/+2
|
* changed version to 980808Joel Sherrill1998-08-082-2/+2
|
* changed version to 9800808Joel Sherrill1998-08-082-2/+2
|
* changed version to 980724Joel Sherrill1998-07-242-2/+2
|
* changed version to 980723Joel Sherrill1998-07-232-2/+2
|
* changed version to 980710Joel Sherrill1998-07-102-2/+2
|
* changed version to 980707Joel Sherrill1998-07-072-2/+2
|
* changed version to 9800707Joel Sherrill1998-07-072-2/+2
|
* changed version to 980618Joel Sherrill1998-06-182-2/+2
|
* changed version to 980604Joel Sherrill1998-06-042-2/+2
|
* changed version to 980527Joel Sherrill1998-05-272-2/+2
|
* Corrected interrupt stack allocation.Joel Sherrill1998-05-272-6/+14
|
* changed version to 980521Joel Sherrill1998-05-212-2/+2
|
* changed version to 980518Joel Sherrill1998-05-182-2/+2
|
* Include memory for Ada task stacks.Joel Sherrill1998-05-182-4/+4
|
* Added default value for CONFIGURE_MAXIMUM_POSIX_THREADS since it isJoel Sherrill1998-05-042-0/+2
| | | | | used to calculate the amount of memory used by tasks whether the POSIX API is enabled or disabled.
* Removed redundant "* 1024" which exploded the size of the workspace.Joel Sherrill1998-04-302-4/+4
|
* Added numerous entries to make the memory calculation more accurate:Joel Sherrill1998-04-272-2/+134
| | | | | | | | | | | | | + POSIX threads + Ada tasks + POSIX threads API support + POSIX condition variables + POSIX keys (still do not account for data fields) + POSIX mutexes + POSIX queued signals + added macro for extra memory for task stacks + default value for CONFIGURE_MAXIMUM_FAKE_ADA_TASKS + extra memory for Ada task stacks
* Changed to account for libio's maximum_semaphores as well as itsJoel Sherrill1998-04-182-2/+10
| | | | | | memory requirements. Also added variable to tell libio how many file descriptors to allocate.
* Changed version number so script will work.Joel Sherrill1998-04-182-2/+2
|
* Numerous changes which in total greatly reduced the amount of sourceJoel Sherrill1998-04-152-2/+18
| | | | | | | | | | | | code in each BSP's bspstart.c. These changes were: + confdefs.h now knows libio's semaphore requirements + shared/main.c now copies Configuration to BSP_Configuration + shared/main.c fills in the Cpu_table with default values This removed the need for rtems_libio_config() and the constant BSP_LIBIO_MAX_FDS in every BSP. Plus now the maximum number of open files can now be set on the gcc command line.
* Per suggestion from Eric Norum, went from one initial extension setJoel Sherrill1998-04-155-10/+57
| | | | | | to multiple. This lets the stack check extension be installed at system initialization time and avoids the BSP having to even know about its existence.