summaryrefslogtreecommitdiffstats
path: root/c/src/exec/sapi/headers (follow)
Commit message (Collapse)AuthorAgeFilesLines
* changed version to 980723Joel Sherrill1998-07-231-1/+1
|
* changed version to 980710Joel Sherrill1998-07-101-1/+1
|
* changed version to 980707Joel Sherrill1998-07-071-1/+1
|
* changed version to 9800707Joel Sherrill1998-07-071-1/+1
|
* changed version to 980618Joel Sherrill1998-06-181-1/+1
|
* changed version to 980604Joel Sherrill1998-06-041-1/+1
|
* changed version to 980527Joel Sherrill1998-05-271-1/+1
|
* Corrected interrupt stack allocation.Joel Sherrill1998-05-271-3/+7
|
* changed version to 980521Joel Sherrill1998-05-211-1/+1
|
* changed version to 980518Joel Sherrill1998-05-181-1/+1
|
* Include memory for Ada task stacks.Joel Sherrill1998-05-181-2/+2
|
* Added default value for CONFIGURE_MAXIMUM_POSIX_THREADS since it isJoel Sherrill1998-05-041-0/+1
| | | | | 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-301-2/+2
|
* Added numerous entries to make the memory calculation more accurate:Joel Sherrill1998-04-271-1/+67
| | | | | | | | | | | | | + 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-181-1/+5
| | | | | | memory requirements. Also added variable to tell libio how many file descriptors to allocate.
* Changed version number so script will work.Joel Sherrill1998-04-181-1/+1
|
* Numerous changes which in total greatly reduced the amount of sourceJoel Sherrill1998-04-151-1/+9
| | | | | | | | | | | | 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-152-3/+26
| | | | | | 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.
* changed version to ralf-980414Joel Sherrill1998-04-141-1/+1
|
* Account for interrupt stack spaceJoel Sherrill1998-04-141-1/+12
|
* Added stack checker extensionJoel Sherrill1998-04-141-2/+14
|
* Now accounts for region used by RTEMS malloc and extension usedJoel Sherrill1998-04-141-4/+16
| | | | by newlib.
* changed version to 4.0.0-beta2Joel Sherrill1998-03-311-1/+1
|
* changed version to 4.0.0-beta1Joel Sherrill1998-03-241-1/+1
|
* Added misisng line continuation.Joel Sherrill1998-02-201-1/+1
|
* changed version to 980219Joel Sherrill1998-02-191-1/+1
|
* Accounted for fixed system overhead.Joel Sherrill1998-02-191-2/+10
|
* changed version to 980218Joel Sherrill1998-02-181-1/+1
|
* updated copyright to 1998Joel Sherrill1998-02-178-8/+8
|
* Installing sptables with version information.Joel Sherrill1998-02-171-3/+3
|
* First cut at automatic insertion of version information.Joel Sherrill1998-02-172-3/+14
|
* Patch from Ralf Corsepius to reduce the amount of memory consumed byJoel Sherrill1998-02-041-2/+6
| | | | the workspace by default.
* Big patch form Ralf Corsepius described in this email:Joel Sherrill1998-01-301-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Here is the result of my nightly work to get RTEMS_ROOT=$srcdir working with different shells and relative/absolute paths. What I did is relatively simple in principle: Instead of setting RTEMS_ROOT in configure.in and then let configure substitute @RTEMS_ROOT@ inside the Makefiles, I now let each Makefile set RTEMS_ROOT from each Makefile's @top_srcdir@ value. The difference is subtile, but with enormous side effects: - If RTEMS_ROOT is set in configure, then the same single value will be propagated to all Makefiles. This breaks using relative paths, as the relative path to the root of the source tree is used inside of all subdirectory Makefiles. - Now each Makefile.in sets RTEMS_ROOT = @top_srcdir@. top_srcdir is computed individually by configure for each single Makefile.in, hereby receiving the correct value, no matter if relative or absolute paths are used. To get this working, I needed to remove setting RTEMS_ROOT from target.cfg.in, because this overrides the value of RTEMS_ROOT from each individual Makefile. Furthermore, I removed RTEMS_CUSTOM from the Makefiles and replaced all "include $(RTEMS_CUSTOM)" directives with"include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP)". Perhaps you don't like this, but I think, to have one variable less is clearer and easier to understand than having several variables refering to the next one. I enclose a small patch to this mail, which - fixes the config.h problem (to finally clearify misunderstands) - removes assignment/subsitution of RTEMS_ROOT from configure.in - contains a workaround for the application Makefile's RTEMS_ROOT problem (reported by Eric) - removes some unused lines from the toplevel Makefile.in - removes assignment of RTEMS_ROOT from make/target.cfg.in
* Removed CONFIG_DIR and PROJECT_HOME directories.Joel Sherrill1998-01-201-1/+1
|
* Added CONFIGURE_GNAT_KEYS to correct the number of keys configuredJoel Sherrill1997-12-231-12/+11
| | | | | | | | | for GNAT. It was the number of Ada tasks when in fact the run-time only required a single key. Also added the CONFIGURE_MAXIMUM_FAKE_ADA_TASKS constant to account for resources allocated for each non-Ada task/thread which invokes the Ada run-time implicitly through an Ada call.
* Modified a lot of files to take a first cut at supporting building fromJoel Sherrill1997-12-101-1/+4
| | | | | any directory in the build tree. The only variable which must be set before the command "gmake" is invoked is RTEMS_BSP (e.g. RTEMS_BSP=erc32).
* Added CONFIGURE_MEMORY_USER_OVERHEAD constant per Chris Johns request.Joel Sherrill1997-11-181-1/+6
|
* Fixed typo in the pointer to the license terms.Joel Sherrill1997-10-089-18/+18
|
* Removed include directory at "build" point and the link of this directoryJoel Sherrill1997-10-081-2/+2
| | | | | | to lib/include. Went to using a PROJECT_INCLUDE variable.
* Added GNAT configuration parameters.Joel Sherrill1997-08-041-4/+19
|
* Added postswitch extension.Joel Sherrill1997-07-091-0/+2
|
* changed version number to 4.1.0.Joel Sherrill1997-05-271-1/+1
|
* headers updated to reflect new style copyright notice as partJoel Sherrill1997-04-229-45/+45
| | | | of switching to the modified GNU GPL.
* This set of changes is the build of what was required to convert toJoel Sherrill1997-04-012-0/+169
| | | | | | | | | | | | | | | | | | | | GNU autoconf. This is the first large step in allowing an RTEMS user to perform a one-tree build (per crossgcc FAQ) including RTEMS in the build process. With this change RTEMS is configured in built in the same style as the GNU tools, yet retains the basic structure of its traditional Makefiles (ala Tony Bennett). Jiri Gaisler (jgais@wd.estec.esa.nl) deserves (and received) a big thank you for doing this. There are still issues to be resolved but as of this commit, all target which can be built on a linux host have been using a modified version of the source Jiri submitted. This source was merged and most targets built in the tree before this commit. There are some issues which remain to be resolved but they are primarily related to host OS dependencies, script issues, the use of gawk for hack_specs, and the dependence on gcc snapshots. These will be resolved.
* updated version to 4.0.0Joel Sherrill1997-03-081-1/+1
|
* changed version string to 3.6.0Joel Sherrill1996-09-301-1/+1
|
* changed versionJoel Sherrill1996-07-031-1/+1
|
* added posix configuration parameter maximum_queued_signals.Joel Sherrill1996-06-131-0/+5
|
* tests now specify whether using posix initialization threads tableJoel Sherrill1996-05-291-13/+45
| | | | or rtems initialization table in configuration table
* fixed support for posix initialization threads tableJoel Sherrill1996-05-291-2/+22
|