summaryrefslogtreecommitdiffstats
path: root/c (unfollow)
Commit message (Collapse)AuthorFilesLines
1999-11-05Correctly set and called handlers table for the link.Jennifer Averett3-3/+9
1999-11-05Fixed commentJennifer Averett3-3/+3
1999-11-05Moved imfs set handlers prototype to the imfs.h file.Jennifer Averett6-18/+12
1999-11-05New file. Added as part of adding a formal API to this object.Joel Sherrill1-0/+54
1999-11-05New file.Joel Sherrill3-0/+114
1999-11-05Unmount was failing as a side-effect of splitting the rmnod handlerJoel Sherrill22-191/+309
and not handling every case properly.
1999-11-05Split unistd.c file into sysconf.c and sleep.c.Joel Sherrill3-2/+29
1999-11-05Following comments from Eric Norum <eric@cls.usask.ca>, a fairlyJoel Sherrill7-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.
1999-11-05Patch from Eric Valette <valette@crf.canon.fr> so this will buildJoel Sherrill9-463/+94
independently of a BSP.
1999-11-05Fixed typo.Joel Sherrill1-3/+3
1999-11-05This is another pass at making sure that nothing outside the BSPJoel Sherrill41-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>.
1999-11-04The files in libcpu should not be directly dependent on any BSP. InJoel Sherrill60-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.
1999-11-03Renamed POSIX_Thread_cancel_run to _POSIX_Thread_cancel_run since RTEMSJoel Sherrill5-8/+9
internal symbols are supposed to have leading underscores.
1999-11-03Added CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM as a configurationJoel Sherrill1-4/+3
parameter.
1999-11-03Added prototype of _POSIX_Semaphore_Delete to avoid warnings.Joel Sherrill1-0/+12
1999-11-03Added prototype of POSIX_Thread_cancel_run to avoid warnings.Joel Sherrill1-0/+12
1999-11-03Typo fixed by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.Joel Sherrill1-1/+1
1999-11-02Split core mutex and semaphore handlers into separate files.Joel Sherrill6-0/+561
1999-11-02Split core message queue and watchdog handler objects into separate files.Joel Sherrill15-993/+875
1999-11-02Split Heap and Time of Day Handlers.Joel Sherrill13-1537/+809
1999-11-02Split threadq.c into multiple files.Joel Sherrill17-2/+1280
1999-11-02The object memfile.o was being included in the miniIMFS even though itJoel Sherrill31-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.
1999-11-02Split object.c into multiple files.Joel Sherrill17-983/+1375
1999-11-02Split types.s into individual files.Joel Sherrill12-172/+306
1999-11-02Final tuning required to drop out POSIX timers.Joel Sherrill4-47/+59
1999-11-02*** empty log message ***Joel Sherrill4-923/+985
1999-11-02Split cancel.c into multiple files.Joel Sherrill8-186/+280
1999-11-02Missed these in the initial split up.Joel Sherrill2-0/+177
1999-11-02Split key.c into multiple files.Joel Sherrill7-226/+294
1999-11-02Wrong routine was initially cut into this file.Joel Sherrill1-14/+6
1999-11-02Split time.c into multiple files.Joel Sherrill14-366/+578
1999-11-02Split condition variables into multiple files.Joel Sherrill15-484/+544
1999-11-02Split the POSIX semaphore manager into multiple files.Joel Sherrill18-588/+838
1999-11-02Split some more stuff out of psignal.c.Joel Sherrill7-236/+345
1999-11-02Split mutex.c into multiple files.Joel Sherrill23-703/+1037
1999-11-02Split mqueue into multiple files.Joel Sherrill1-0/+28
1999-11-02Removed warnings.Joel Sherrill1-2/+2
1999-11-02Split mqueue.c into a variety of files.Joel Sherrill17-673/+1127
1999-11-02Minor changes to make the screen match a bit better.Joel Sherrill2-4/+4
1999-11-02Minor fixes to make screen match a bit better.Joel Sherrill2-11/+15
1999-11-02Added more proper checking of F_GETFL and F_SETFL.Joel Sherrill1-5/+17
Disabled test of F_DUPFD since it does not work. Added comment to indicate that seekdir(NULL) was being called.
1999-11-02Fixed F_SETFL to properly convert between internalJoel Sherrill2-4/+6
libio flags and external fcntl.h style flags.
1999-11-02Added support for configuring base filesystem. First attempt atJoel Sherrill2-34/+82
a full mount table at initialization. This is the wrong place to mount filesystems 2-n since no device drivers are initialized yet.
1999-11-02Install imfs.h so base filesystem can be configured or IMFS mountedJoel Sherrill1-1/+1
by an application.
1999-11-02Check for NULL being passed in.Joel Sherrill8-4/+34
1999-11-02Fixed typo where memfile_handlers set twice and directory_handlersJoel Sherrill3-9/+9
was not set.
1999-11-02Properly initialize location variable.Joel Sherrill3-0/+24
1999-11-02Split console_reserve_resources into its own file to reduce dependencies.Joel Sherrill3-10/+30
Still need to move debug io routines out.
1999-11-02Fixed bug which resulted in misaligned object control structuresJoel Sherrill1-3/+5
being allocated. This bug manifested itself on the SPARC since it uses ldd/std in its context save/restore routines.
1999-11-02Added a comment to indicate that if a task blocked on a priorityJoel Sherrill1-0/+5
based thread queue were to be reinserted based on its new priority, this is where the logic would go.