summaryrefslogtreecommitdiffstats
path: root/bsps/sparc/shared/btimer/tlib_ckinit.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* grlib: Move source filesSebastian Huber2019-01-221-442/+0
| | | | Update #3678.
* grlib: Move header filesSebastian Huber2019-01-221-1/+1
| | | | Update #3678.
* leon3, ckinit: avoid unsued code warnings when drvmgr is enabledDaniel Hellstrom2018-09-201-3/+6
|
* Remove Clock_driver_support_shutdown_hardware()Sebastian Huber2018-06-271-14/+0
| | | | | | | | | | | | | | | | | The aim of this clock driver hook was to stop clock tick interrupts at some late point in the exit() procedure. The use of atexit() pulls in malloc() which pulls in errno. It is incompatible with the intention of the CONFIGURE_DISABLE_NEWLIB_REENTRANCY configuration option. The exit() function must be called from thread context, so accompanied clock tick interrupts should cause no harm. On the contrary, someone may assume a normal operating system operation, e.g. working timeouts. Remove the Clock_driver_support_shutdown_hardware() clock driver hook. Close #3436.
* bsps: Move benchmark timer to bspsSebastian Huber2018-04-201-0/+453
This patch is a part of the BSP source reorganization. Update #3285.