summaryrefslogtreecommitdiffstats
path: root/c/src (unfollow)
Commit message (Collapse)AuthorFilesLines
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.
1999-11-02Added code to allocate by index. This is the object ID style usedJoel Sherrill1-27/+134
by ITRON. Corrected spacing.
1999-11-02Added maximum count detection logic.Joel Sherrill2-4/+16
1999-11-02Added support for message priority as required by POSIX.Joel Sherrill2-5/+43
1999-11-02Corrected spacing.Joel Sherrill1-2/+2
1999-11-02Added message queues and semaphores.Joel Sherrill1-0/+11
1999-11-02Added CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES andJoel Sherrill1-0/+24
CONFIGURE_MAXIMUM_POSIX_SEMAPHORES.
1999-11-02Added comment to make sure Classic API priority to Core priorityJoel Sherrill1-0/+1
is added in the future.
1999-11-02Added comments for _RTEMS_tasks_Create_extension,Joel Sherrill1-4/+9
_RTEMS_tasks_Start_extension, _RTEMS_tasks_Delete_extension, and _RTEMS_tasks_Switch_extension.
1999-11-02Added a case to support the core semaphore error returned when theJoel Sherrill1-0/+8
maximum semaphore count is exceeded.
1999-11-02Added code to utilize the maximum_count attribute of core semaphoresJoel Sherrill1-0/+7
and initialize it to a value that would keep it from every being a problem.
1999-11-02Now much closer to working.Joel Sherrill1-7/+61
1999-11-02Added assert in case _Objects_Get_information fails since thisJoel Sherrill1-0/+4
should NEVER occur.