summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/envlock.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* libcsupport: Doxygen enhancement GCI task #6Alex Ivanov2012-12-111-0/+7
| | | | http://www.google-melange.com/gci/task/view/google/gci2012/7992212
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-2/+0
| | | | | | | | | | | | Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
* 2011-12-06 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-12-061-1/+8
| | | | * libcsupport/src/envlock.c: Build conditionally.
* 2011-12-06 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2011-12-061-1/+1
| | | | | * libcsupport/src/envlock.c: Rename define ENVLOCK_DEDIDCATED_MUTEX into ENVLOCK_DEDICATED_MUTEX (Typo).
* 2010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2010-04-301-2/+2
| | | | | | | | * libcsupport/include/rtems/libio_.h, libcsupport/src/envlock.c, libcsupport/src/libio.c: Added and use rtems_libio_lock() and rtems_libio_unlock(). Cleaned up includes and declarations. Do not use RTEMS_NO_PRIORITY for unused ceiling priority in rtems_semaphore_create().
* Add __attribute__((unused)) to function arguments.Ralf Corsepius2009-09-151-2/+2
|
* Remove stray white spaces.Ralf Corsepius2004-04-181-2/+2
|
* 2001-05-17 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2002-05-171-2/+28
| | | | | | * libc/envlock.c: Implemented code to let newlib's envlock share the libio open/close mutex. Since both should be lightly used, this should not lead to problems and saves resources.
* 2001-05-14 Till Straumann <strauman@slac.stanford.edu>Joel Sherrill2002-05-141-0/+82
* Per PR212, added envlock support for newlib. This is used by at least getenv()/putenv() to avoid race conditions. * libc/envlock.c: New file. * libc/Makefile.am: Modified to reflect above.