summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* sporadic server debugged and working. This required minor changes in allJoel Sherrill1996-08-071-20/+40
| | | | sporadic server related routines.
* _POSIX_Mutex_From_core_mutex_status: added priority ceiling violation caseMark Johannes1996-08-071-0/+2
|
* _POSIX_Threads_Delete_extension: reorder to eliminate use of local pointerJoel Sherrill1996-08-061-6/+9
| | | | | | variable before set. pthread_join: using local variable so user can pass NULL pointer as argument
* POSIX_Mutex_Default_attributes: changed prio_ceiling to maximum priorityMark Johannes1996-08-061-1/+2
|
* pthread_getspecific: use local variable so references to tcb are completedJoel Sherrill1996-08-061-1/+6
| | | | before enabling dispatching
* added page delimiters for comment blocksJoel Sherrill1996-08-012-11/+25
|
* Fixed default vectors initialization, sigaction which had a redundantMark Johannes1996-07-151-42/+64
| | | | if clause for DFT action.
* basic test cases passedJoel Sherrill1996-07-041-4/+35
|
* *** empty log message ***Joel Sherrill1996-07-021-1/+22
|
* initial modifications to support sigtimedwait.Joel Sherrill1996-06-151-9/+30
|
* sigtimedwait passes initial test cases of timeout and simple satisfaction.Mark Johannes1996-06-131-1/+5
|
* added queued signals and cleaned up setting of process wide signals soJoel Sherrill1996-06-131-68/+148
| | | | it occurs in only one place.
* basic test cases for kill() and alarm().Joel Sherrill1996-06-132-11/+63
| | | | | kill() in particular needs more test cases for full coverage. The search for a thread interested in this signal has a lot of paths.
* basic kill() which send a signal to pthread_self() appears to work.Joel Sherrill1996-06-121-7/+18
|
* initial implementation of blocking signal routines -- sigwait, sigwaitinfo,Joel Sherrill1996-06-121-34/+227
| | | | sigtimedwait, sigsuspend, and pause.
* added comment to make sure we add unblock of threadJoel Sherrill1996-06-111-0/+2
|
* first attempt at adding algorithm to select the thread which willJoel Sherrill1996-06-112-23/+255
| | | | receive a process-directed signal.
* tested blocking a signal, sending it to self, then unblocking it.Joel Sherrill1996-06-112-32/+61
| | | | | make minimum stack size for posix threads double that of the cpu's minimum requirement.
* Basic signal functionality appears to work. pthread_kill() can successfullyJoel Sherrill1996-06-113-9/+31
| | | | | | | send signals to the current thread or to another blocked thread. nanosleep() can be interrupted by a signal and return the time remaining. Post switch extension added to dispatch posix signal handlers.
* first attempt at the routine which vectors signals.Joel Sherrill1996-06-102-12/+328
|
* changed code which set errno and then returned -1 to use the macroJoel Sherrill1996-06-075-56/+32
| | | | set_errno_and_return_minus_one.
* key destructor is now run at correct point in pthread_exit() sequence andJoel Sherrill1996-06-073-104/+173
| | | | | | | | should be correct for other apis as well. missing page numbers added on some references. initial attempt at sig_procmask() and pthread_sigmask().
* Removed assert's from routines which return the error ENOSYS.Joel Sherrill1996-06-061-12/+0
|
* process oriented scheduler routines now return ENOSYSJoel Sherrill1996-06-061-4/+8
|
* removed timer_getoverrun() since it was also in ptimer.cJoel Sherrill1996-06-061-11/+0
|
* Made the implementation of pthread_equal conditional on RTEMS_DEBUG. IfJoel Sherrill1996-06-061-0/+10
| | | | | RTEMS is built for debug, then every possible effort is made to validate the two ids. Otherwise, a simple comparison is performed.
* completed pthread_setschedparam.Joel Sherrill1996-06-061-73/+130
|
* added Sporadic Server supportJoel Sherrill1996-06-061-27/+109
|
* renamed Schedule to schedparam in the posix api control information.Joel Sherrill1996-06-051-11/+22
| | | | reviewed the interpretation of most of the thread attributes.
* make PTHREAD_SCOPE_SYSTEM an unsupported value for contentionscope.Joel Sherrill1996-06-041-2/+11
|
* made sure _Thread_Enable_dispatch is not invoked in casesJoel Sherrill1996-06-041-5/+0
| | | | where _Objects_Get failed
* made sure routines which called _Objects_Get also calledJoel Sherrill1996-06-041-10/+25
| | | | _Thread_Enable_dispatch.
* added some of the required functionality to pthread_setschedparam andJoel Sherrill1996-06-041-31/+71
| | | | pthread_getschedparam.
* clean up passJoel Sherrill1996-06-041-10/+14
|
* renamed the local variable attrp to the_attr in pthread_createJoel Sherrill1996-06-041-11/+11
|
* changed sched_rr_get_interval to use the interval to timespec routine.Joel Sherrill1996-06-041-3/+2
|
* added interpretation of scheduling policy and parameter information toJoel Sherrill1996-06-043-28/+98
| | | | | | | | pthread_create initial implementation of get/set id routines better argument checking on scheduler functions.
* added thread queue for list of threads waiting to join.Joel Sherrill1996-06-031-9/+33
| | | | | | thread is added to join list in pthread_join. all threads waiting on the join list are flushed when the thread exits.
* deleted POSIX threads typedef masking Thread_ControlJoel Sherrill1996-06-032-7/+80
| | | | added initial version of pthread_detach and pthread_join
* nanosleep now fills in the time remaining structure.Joel Sherrill1996-06-031-4/+3
|
* renamed _POSIX_Time_Spec_to_interval to _POSIX_Timespec_to_intervalJoel Sherrill1996-06-036-20/+41
|
* created ptimer.c and moved the timer_* routines out of time.c into ptimer.cJoel Sherrill1996-06-032-58/+76
|
* renamed _TOD_Ticks_since_boot as _Watchdog_Ticks_since_boot so the WatchdogJoel Sherrill1996-05-313-2/+3
| | | | | Handler could timestamp the starting and stopping of timers. Since TOD is built on top of Watchdog, this avoided a circular dependency.
* added checks to validate values passed to set attribute routinesJoel Sherrill1996-05-316-26/+105
|
* moved sleep() from psignal.c to unistd.cJoel Sherrill1996-05-314-26/+115
| | | | | | | implemented sigemptyset() sigfillset(), sigaddset(), sigdelset(), and sigismember(). added checks for valid attribute values to some of the pthread_attr_t sets.
* First cut at implementing time, clock_gettime, clock_settime, clock_getres,Joel Sherrill1996-05-302-17/+168
| | | | | sleep, and nanosleep. Does not yet support per process clock, per thread clock, interruptible sleep (sleep/nanosleep), or time remaining on nanosleep.
* posix initialization threads table was misnamed "posix initializationJoel Sherrill1996-05-291-23/+24
| | | | tasks table"
* comment clean upJoel Sherrill1996-05-2915-30/+19
|
* types.c: spacingJoel Sherrill1996-05-292-28/+33
| | | | | psignal.c: kill recognizes SIGABRT and exits to prevent asserts from recursively occurring because kill was not implemented and asserted.
* added pthread_exitJoel Sherrill1996-05-291-8/+45
| | | | first posix thread ran