summaryrefslogtreecommitdiffstats
path: root/c/src/exec/sapi (unfollow)
Commit message (Collapse)AuthorFilesLines
1999-02-10changed version to 19990210Joel Sherrill1-1/+1
1999-02-03POSIX Timers submitted by Juan Zamorano FloresJoel Sherrill2-0/+12
<jzamora@avellano.datsi.fi.upm.es>.
1998-12-17changed version to 19981217Joel Sherrill1-1/+1
1998-12-17Automake reorgnization.Joel Sherrill2-0/+28
1998-12-16changed version to 19981215Joel Sherrill1-1/+1
1998-12-15More automake preparation changes from Ralf CorsepiusJoel Sherrill4-7/+46
<corsepiu@faw.uni-ulm.de>.
1998-12-15Moved around per Ralf Corsepius as preparation for automakeJoel Sherrill15-2014/+0
1998-12-04changed version to 19981203Joel Sherrill2-2/+2
1998-12-03Moved stackchk.h to rtems subdirectory.Joel Sherrill2-2/+2
1998-11-23Added base version of file system infrastructure. This includes a majorJoel Sherrill1-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.
1998-11-23Added --disable-multiprocessing flag and modified a lot of files to makeJoel Sherrill6-0/+43
it work.
1998-10-29changed version to 4.0.0-AFCCJoel Sherrill2-2/+2
1998-10-27changed version to 4.0.0Joel Sherrill2-2/+2
1998-10-26changed version to 4.0.0-beta4bJoel Sherrill2-2/+2
1998-10-15changed version to 4.0.0-beta4aJoel Sherrill2-2/+2
1998-10-12changed version to 4.0.0-beta4Joel Sherrill2-2/+2
1998-10-06changed version to 981006Joel Sherrill2-2/+2
1998-10-01changed version to 981001Joel Sherrill2-2/+2
1998-09-23changed version to 980923Joel Sherrill2-2/+2
1998-09-21changed version to 980921Joel Sherrill2-2/+2
1998-09-11changed version to 980911Joel Sherrill2-2/+2
1998-08-24changed version to 980824Joel Sherrill2-2/+2
1998-08-24Added __RTEMS_INSIDE__ macro to insure that ".inl" files are ALWAYS includedJoel Sherrill1-1/+1
when building the executive source.
1998-08-21changed version to 980821Joel Sherrill2-2/+2
1998-08-21Modified version number to recut snapshot.Joel Sherrill2-2/+2
1998-08-21changed version to 980821Joel Sherrill2-2/+2
1998-08-20changed version to 980820pm-BSDJoel Sherrill2-2/+2
1998-08-20changed version to 980820-BSDJoel Sherrill2-2/+2
1998-08-19changed version to 980819Joel Sherrill2-2/+2
1998-08-08changed version to 980808Joel Sherrill2-2/+2
1998-08-08changed version to 9800808Joel Sherrill2-2/+2
1998-07-24changed version to 980724Joel Sherrill2-2/+2
1998-07-23changed version to 980723Joel Sherrill2-2/+2
1998-07-10changed version to 980710Joel Sherrill2-2/+2
1998-07-07changed version to 980707Joel Sherrill2-2/+2
1998-07-07changed version to 9800707Joel Sherrill2-2/+2
1998-06-18changed version to 980618Joel Sherrill2-2/+2
1998-06-04changed version to 980604Joel Sherrill2-2/+2
1998-05-27changed version to 980527Joel Sherrill2-2/+2
1998-05-27Corrected interrupt stack allocation.Joel Sherrill2-6/+14
1998-05-21changed version to 980521Joel Sherrill2-2/+2
1998-05-18changed version to 980518Joel Sherrill2-2/+2
1998-05-18Include memory for Ada task stacks.Joel Sherrill2-4/+4
1998-05-04Added default value for CONFIGURE_MAXIMUM_POSIX_THREADS since it isJoel Sherrill2-0/+2
used to calculate the amount of memory used by tasks whether the POSIX API is enabled or disabled.
1998-04-30Removed redundant "* 1024" which exploded the size of the workspace.Joel Sherrill2-4/+4
1998-04-27Added numerous entries to make the memory calculation more accurate:Joel Sherrill2-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
1998-04-18Changed to account for libio's maximum_semaphores as well as itsJoel Sherrill2-2/+10
memory requirements. Also added variable to tell libio how many file descriptors to allocate.
1998-04-18Changed version number so script will work.Joel Sherrill2-2/+2
1998-04-15Numerous changes which in total greatly reduced the amount of sourceJoel Sherrill2-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.
1998-04-15Per suggestion from Eric Norum, went from one initial extension setJoel Sherrill5-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.