summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/include/rtems (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Part of the automake VI patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1999-02-182-1/+5
| | | | | | | | | | | | | | | | > 5) rtems-rc-19990202-1.diff/reorg-install.sh > > reorg-install.sh fixes a Makefile variable name clash of RTEMS > configuration files and automake/autoconf standards. > Until now, RTEMS used $(INSTALL) for install-if-change. Automake and > autoconf use $(INSTALL) for a bsd-compatible install. As > install-if-change and bsd-install are not compatible, I renamed all > references to install-if-changed to $(INSTALL_CHANGED) and used > $(INSTALL) for bsd-install (==automake/autoconf standard). When > automake will be introduced install-if-change will probably be replaced > by $(INSTALL) and therefore will slowly vanish. For the moment, this > patch fixes a very nasty problem which prevents adding any automake file > until now (There are still more).
* POSIX Timers submitted by Juan Zamorano FloresJoel Sherrill1999-02-033-1/+93
| | | | <jzamora@avellano.datsi.fi.upm.es>.
* Split psignal.c into many more files. This reduced the amount ofJoel Sherrill1999-01-311-0/+93
| | | | | object code that has to be loaded just for initializing the signal manager.
* Added enough prototypes to allow most of POSIX Threads Manager to beJoel Sherrill1999-01-251-0/+26
| | | | split into multiple files.
* Added files as part of moveJoel Sherrill1998-12-151-0/+14
|
* Added --disable-multiprocessing flag and modified a lot of files to makeJoel Sherrill1998-11-236-3/+17
| | | | it work.
* Changed __POSIX_SIGNALS_h to __RTEMS_POSIX_SIGNALS_h to avoid conflict withJoel Sherrill1998-04-271-2/+7
| | | | | | | the system signals.h file. Moved POSIX_signals_Siginfo_node type definition to this file to allow confdefs.h to know the size per queued signal.
* updated copyright to 1998Joel Sherrill1998-02-1715-15/+15
|
* 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
|
* 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).
* Fixed typo in the pointer to the license terms.Joel Sherrill1997-10-0815-30/+30
|
* Removed include directory at "build" point and the link of this directoryJoel Sherrill1997-10-081-1/+1
| | | | | | to lib/include. Went to using a PROJECT_INCLUDE variable.
* Changed name from entry to thread_entry to be more compatible withJoel Sherrill1997-07-091-1/+1
| | | | Ada interface where entry is a keyword.
* headers updated to reflect new style copyright notice as partJoel Sherrill1997-04-2215-75/+75
| | | | of switching to the modified GNU GPL.
* Reduced number of POSIX thread priorities from 255 to 254 to avoid conflictsJoel Sherrill1997-04-151-1/+7
| | | | | of lowest priority with the RTEMS IDLE thread. This was causing the lowest priority GNAT Ada task to never run.
* This set of changes is the build of what was required to convert toJoel Sherrill1997-04-011-0/+33
| | | | | | | | | | | | | | | | | | | | 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.
* added prototype for _POSIX_Timespec_subtractJoel Sherrill1996-09-171-0/+11
|
* moved PTHREAD_MINIMUM_STACK_SIZE from pthread.c to here so it would beJoel Sherrill1996-09-081-0/+2
| | | | visible to other files.
* added constant to indicate there is no mutex associated with thisJoel Sherrill1996-08-151-0/+7
| | | | condition variable
* mutex.h: removes the promotion of core status code to POSXI status codesMark Johannes1996-08-121-12/+0
|
* mutex.h: promoted out _POSIX_Mutex_From_core_mutex_statusMark Johannes1996-08-121-0/+12
|
* added ss_high_priority field to support sporadic server.Joel Sherrill1996-08-081-0/+1
|
* switched from "STATIC INLINE" to "RTEMS_INLINE_ROUTINE"Joel Sherrill1996-07-038-32/+32
|
* fields for init threads stuff said tasks.Joel Sherrill1996-06-141-2/+2
|
* config.h: added maximum_queued_signals.Joel Sherrill1996-06-132-1/+4
| | | | psignal.h: fixed typo.
* added prototype for manager initialization routine.Joel Sherrill1996-06-131-0/+2
|
* deleted field for signals_global_pending.Joel Sherrill1996-06-111-1/+0
|
* new file.Joel Sherrill1996-06-111-1/+1
|
* added psignal.hJoel Sherrill1996-06-101-0/+13
|
* *** empty log message ***Joel Sherrill1996-06-101-1/+1
|
* new fileJoel Sherrill1996-06-071-0/+20
|
* in newlib nowJoel Sherrill1996-06-061-0/+4
|
* added Sporadic_timer field to support sporadic serverJoel Sherrill1996-06-061-0/+1
|
* added comments to priority.h to document the definition of posix priorityJoel Sherrill1996-06-052-2/+6
| | | | | | and how it corresponds to rtems core priority. Schedule was renamed schedparam
* added scheduling policy and parameter informationJoel Sherrill1996-06-041-0/+3
|
* added thread queue for list of threads waiting to join.Joel Sherrill1996-06-031-0/+2
|
* deleted POSIX threads typedef masking Thread_ControlJoel Sherrill1996-06-032-11/+6
|
* renamed _POSIX_Time_Spec_to_interval to _POSIX_Timespec_to_intervalJoel Sherrill1996-06-031-1/+15
|
* added constant for seconds between posix epoch (1970) and rtems epoch (1988).Joel Sherrill1996-06-031-0/+11
| | | | Formerly this constant was in the file src/time.c.
* commented out cancel handlers related items.Joel Sherrill1996-05-311-0/+3
|
* posix initialization threads table was misnamed "posix initializationJoel Sherrill1996-05-292-14/+14
| | | | tasks table"
* first cut at pthread_createJoel Sherrill1996-05-291-3/+3
|
* added entry point for posix initialization threads to the posix initializationJoel Sherrill1996-05-291-2/+8
| | | | threads table structure
* split the inclusion of "EXTERN" data based on whether it was sapi,Joel Sherrill1996-05-288-10/+48
| | | | score, rtems api, or posix api related.
* added initial set of api extension calloutsJoel Sherrill1996-05-282-2/+16
|
* commented out interrupt supportJoel Sherrill1996-05-281-0/+2
|
* added maximum keysJoel Sherrill1996-05-281-0/+1
|
* added initial posix configuration supportJoel Sherrill1996-05-281-0/+51
|
* SPARC port passes all testsJoel Sherrill1995-10-301-2/+1
|