Mark two functions as private.

This commit is contained in:
Peter Wemm 2000-04-29 07:48:37 +00:00
parent 02d06d3007
commit 621372ff84
6 changed files with 22 additions and 0 deletions

View file

@ -723,6 +723,9 @@ add_intrdesc(intrec *idesc)
* Add the interrupt handler descriptor data structure created by an
* earlier call of create_intr() to the linked list for its irq and
* adjust the interrupt masks if necessary.
*
* WARNING: This is an internal function and not to be used by device
* drivers. It is subject to change without notice.
*/
intrec *

View file

@ -201,6 +201,11 @@ intrmask_t splq __P((intrmask_t mask));
#define INTR_FAST 0x00000001 /* fast interrupt handler */
#define INTR_EXCL 0x00010000 /* excl. intr, default is shared */
/*
* WARNING: These are internal functions and not to be used by device drivers!
* They are subject to change without notice.
*/
struct intrec *inthand_add(const char *name, int irq, inthand2_t handler,
void *arg, intrmask_t *maskptr, int flags);

View file

@ -723,6 +723,9 @@ add_intrdesc(intrec *idesc)
* Add the interrupt handler descriptor data structure created by an
* earlier call of create_intr() to the linked list for its irq and
* adjust the interrupt masks if necessary.
*
* WARNING: This is an internal function and not to be used by device
* drivers. It is subject to change without notice.
*/
intrec *

View file

@ -723,6 +723,9 @@ add_intrdesc(intrec *idesc)
* Add the interrupt handler descriptor data structure created by an
* earlier call of create_intr() to the linked list for its irq and
* adjust the interrupt masks if necessary.
*
* WARNING: This is an internal function and not to be used by device
* drivers. It is subject to change without notice.
*/
intrec *

View file

@ -201,6 +201,11 @@ intrmask_t splq __P((intrmask_t mask));
#define INTR_FAST 0x00000001 /* fast interrupt handler */
#define INTR_EXCL 0x00010000 /* excl. intr, default is shared */
/*
* WARNING: These are internal functions and not to be used by device drivers!
* They are subject to change without notice.
*/
struct intrec *inthand_add(const char *name, int irq, inthand2_t handler,
void *arg, intrmask_t *maskptr, int flags);

View file

@ -723,6 +723,9 @@ add_intrdesc(intrec *idesc)
* Add the interrupt handler descriptor data structure created by an
* earlier call of create_intr() to the linked list for its irq and
* adjust the interrupt masks if necessary.
*
* WARNING: This is an internal function and not to be used by device
* drivers. It is subject to change without notice.
*/
intrec *