summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/src/irq-info.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-04-09bsps: Move generic IRQ support to bspsSebastian Huber1-95/+0
This patch is a part of the BSP source reorganization. Update #3285.
2016-06-22Move printer initialization to separate headerSebastian Huber1-1/+1
The RTEMS print user need to know nothing about a particular printer implementation. In particular get rid of the <stdio.h> include which would be visible via <rtems.h>.
2016-05-25cpukit, testsuite: Add rtems_printf and rtems_printer support.Chris Johns1-14/+15
This change adds rtems_printf and related functions and wraps the RTEMS print plugin support into a user API. All references to the plugin are removed and replaced with the rtems_printer interface. Printk and related functions are made to return a valid number of characters formatted and output. The function attribute to check printf functions has been added to rtems_printf and printk. No changes to remove warrnings are part of this patch set. The testsuite has been moved over to the rtems_printer. The testsuite has a mix of rtems_printer access and direct print control via the tmacros.h header file. The support for begink/endk has been removed as it served no purpose and only confused the code base. The testsuite has not been refactored to use rtems_printf. This is future work.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2010-04-302010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber1-4/+1
* include/irq-config.h: Removed file. * include/irq.h: New file (renamed from 'include/irq-config.h'). * include/irq-generic.h, src/irq-info.c: Include <bsp/irq.h> instead of <bsp/irq-config.h>. * src/irq-server.c: Use events instead of semaphore. Added error counter for multiple chain appends. Added error counter to detect erroneous interrupt events.
2009-09-082009-09-08 Sebastian Huber <sebastian.huber@embedded-brains.de>Joel Sherrill1-49/+58
* include/irq-config.h, include/irq-generic.h, include/irq-info.h, src/irq-generic.c, src/irq-info.c, src/irq-legacy.c, src/irq-shell.c: Format, cleanup and documentation. * src/irq-server.c: New file. * include/bootcard.h, include/stackalloc.h, src/stackalloc.c, bsplibc.c: Update for heap API changes. Documentation.
2008-12-192008-12-19 Sebastian Huber <sebastian.huber@embedded-brains.de>Joel Sherrill1-0/+88
* include/irq-info.h, src/irq-info.c, src/irq-shell.c: New files. * include/irq-generic.h, src/irq-generic.c: Improved interrupt handler dispatch function.