summaryrefslogtreecommitdiffstats
path: root/c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Now using libchip instead of local precursor to libchip. Untested.Joel Sherrill1999-11-0910-2274/+86
|
* Removed reaching "up and over" to install BSP header files.Joel Sherrill1999-11-093-6/+3
|
* Added imfs_unixstub.c to satisfy linker problems on UNIX port.Joel Sherrill1999-11-094-1/+215
|
* sem_close was accidentally lost in the split.Joel Sherrill1999-11-092-1/+48
|
* New test for POSIX Message Queues added.Joel Sherrill1999-11-096-1/+171
|
* New files.Joel Sherrill1999-11-094-0/+303
|
* Patch from Eric Norum <eric@cls.usask.ca> to add NTP BOOTP support becauseJoel Sherrill1999-11-096-2/+96
| | | | | | | | EPICS needs a synchronized time-of-day clock. This patch is the changes needed to get NTP server information from a BOOTP server. This patch also adds NTP server information to the network configuration structure, too.
* Added #define to make this file exactly like its siblings in mpc821Joel Sherrill1999-11-091-1/+2
| | | | and mpc860 directories.
* Removed "up and over" into libbsp/.../include.Joel Sherrill1999-11-092-3/+1
|
* Moved include files to hppa1.1 subdirectory and put their sourcesJoel Sherrill1999-11-096-10/+65
| | | | in the include directory.
* Removed runway directory and moved contents to include.Joel Sherrill1999-11-092-77/+0
|
* Correctly set and called handlers table for the link.Jennifer Averett1999-11-053-3/+9
|
* Fixed commentJennifer Averett1999-11-053-3/+3
|
* Moved imfs set handlers prototype to the imfs.h file.Jennifer Averett1999-11-056-18/+12
|
* New file. Added as part of adding a formal API to this object.Joel Sherrill1999-11-051-0/+54
|
* New file.Joel Sherrill1999-11-053-0/+114
|
* Unmount was failing as a side-effect of splitting the rmnod handlerJoel Sherrill1999-11-0522-191/+309
| | | | and not handling every case properly.
* Split unistd.c file into sysconf.c and sleep.c.Joel Sherrill1999-11-053-2/+29
|
* Following comments from Eric Norum <eric@cls.usask.ca>, a fairlyJoel Sherrill1999-11-057-572/+522
| | | | | | | substantial upgrade of newlibc.c occurred. Now the user extension data area is used rather than notepads and as many routines as possible were split into other files further reducing the minimum footprint of an RTEMS executable.
* Patch from Eric Valette <valette@crf.canon.fr> so this will buildJoel Sherrill1999-11-059-463/+94
| | | | independently of a BSP.
* Fixed typo.Joel Sherrill1999-11-051-3/+3
|
* This is another pass at making sure that nothing outside the BSPJoel Sherrill1999-11-0541-82/+282
| | | | | | | | | | | | unnecessarily uses any variables defined by the BSP. On this sweep, use of BSP_Configuration and Cpu_table was eliminated. A significant part of this modification was the addition of macros to access fields in the RTEMS configuration structures. This is necessary to strengthen the division between the BSP independent parts of RTEMS and the BSPs themselves. This started after comments and analysis by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.
* The files in libcpu should not be directly dependent on any BSP. InJoel Sherrill1999-11-0460-113/+730
| | | | | | | | | | | particular, using bsp.h, or getting information from the BSP which should properly be obtained from RTEMS is forbidden. This is necessary to strengthen the division between the BSP independent parts of RTEMS and the BSPs themselves. This started after comments and analysis by Ralf Corsepius <corsepiu@faw.uni-ulm.de>. The changes primarily eliminated the need to include bsp.h and peeking at BSP_Configuration. The use of Cpu_table in each BSP needs to be eliminated.
* Renamed POSIX_Thread_cancel_run to _POSIX_Thread_cancel_run since RTEMSJoel Sherrill1999-11-035-8/+9
| | | | internal symbols are supposed to have leading underscores.
* Added CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM as a configurationJoel Sherrill1999-11-031-4/+3
| | | | parameter.
* Added prototype of _POSIX_Semaphore_Delete to avoid warnings.Joel Sherrill1999-11-031-0/+12
|
* Added prototype of POSIX_Thread_cancel_run to avoid warnings.Joel Sherrill1999-11-031-0/+12
|
* Typo fixed by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.Joel Sherrill1999-11-031-1/+1
|
* Split core mutex and semaphore handlers into separate files.Joel Sherrill1999-11-026-0/+561
|
* Split core message queue and watchdog handler objects into separate files.Joel Sherrill1999-11-0215-993/+875
|
* Split Heap and Time of Day Handlers.Joel Sherrill1999-11-0213-1537/+809
|
* Split threadq.c into multiple files.Joel Sherrill1999-11-0217-2/+1280
|
* The object memfile.o was being included in the miniIMFS even though itJoel Sherrill1999-11-0231-385/+682
| | | | | | | should not have been. This required that IMFS_rmnod be split into three separate (per file type) routines to avoid dependencies. In the end, a miniIMFS application is 6K smaller than one using the full IMFS.
* Split object.c into multiple files.Joel Sherrill1999-11-0217-983/+1375
|
* Split types.s into individual files.Joel Sherrill1999-11-0212-172/+306
|
* Final tuning required to drop out POSIX timers.Joel Sherrill1999-11-024-47/+59
|
* *** empty log message ***Joel Sherrill1999-11-024-923/+985
|
* Split cancel.c into multiple files.Joel Sherrill1999-11-028-186/+280
|
* Missed these in the initial split up.Joel Sherrill1999-11-022-0/+177
|
* Split key.c into multiple files.Joel Sherrill1999-11-027-226/+294
|
* Wrong routine was initially cut into this file.Joel Sherrill1999-11-021-14/+6
|
* Split time.c into multiple files.Joel Sherrill1999-11-0214-366/+578
|
* Split condition variables into multiple files.Joel Sherrill1999-11-0215-484/+544
|
* Split the POSIX semaphore manager into multiple files.Joel Sherrill1999-11-0218-588/+838
|
* Split some more stuff out of psignal.c.Joel Sherrill1999-11-027-236/+345
|
* Split mutex.c into multiple files.Joel Sherrill1999-11-0223-703/+1037
|
* Split mqueue into multiple files.Joel Sherrill1999-11-021-0/+28
|
* Removed warnings.Joel Sherrill1999-11-021-2/+2
|
* Split mqueue.c into a variety of files.Joel Sherrill1999-11-0217-673/+1127
|
* Minor changes to make the screen match a bit better.Joel Sherrill1999-11-022-4/+4
|