summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/redirector/stdio-redirect.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use rtems_task_exit()Sebastian Huber2018-10-021-1/+1
| | | | | Update #3530. Update #3533.
* stdio-redirector: Use self-contained mutexSebastian Huber2018-02-071-61/+29
| | | | Update #2843.
* redirector: Include <rtems/stdio-redirect.h>Sebastian Huber2017-12-131-2/+1
| | | | | | Prepare for header file move to common include directory. Update #3254.
* Include missing <string.h>Sebastian Huber2017-08-251-0/+1
| | | | Update #2133.
* libmisc/redirector: Fix unlock on exit from the handler.Chris Johns2015-03-181-1/+1
|
* libmisc/redirector/stdio-redirect.c: Use UL constants since usleep() should ↵Joel Sherrill2014-10-161-1/+1
| | | | take more than 16-bit constants
* libmisc/redirector/stdio-redirect.c: Use sleep not usleep and do not ↵Joel Sherrill2014-10-131-1/+1
| | | | overflow 16-bit int
* redirector: Rename rtems_stdio_redirect_tSebastian Huber2014-09-171-13/+13
| | | | | | | Rename rtems_stdio_redirect_t to rtems_stdio_redirect since the namespace *_t is reserved by POSIX, see also The Open Group Base Specifications Issue 6 IEEE Std 1003.1, 2004 Edition, 2.2.2 The Name Space.
* libmisc: Add a stdio redirector helper.Chris Johns2014-09-161-0/+333
This module makes it easy to redirect and capture stdout, stderr or any other fd in your application. The captured data can be sent off board, for example using syslog, or buffered and displayed in a web page.